git ssb

16+

Dominic / patchbay



Commit 47cb6549bf0d2c14eabb4b34e784992d02c54187

Remove duplicate issue-edit rendering

cel committed on 1/19/2017, 4:51:57 AM
Parent: 1f66b9d5a43300423b755e4664f3b1ec5c349044

Files changed

modules_extra/git.jschanged
modules_extra/git.jsView
@@ -464,13 +464,10 @@
464464 if(c.type === 'git-update') {
465465 return h('p', 'pushed to ', repoLink(c.repo))
466466 }
467467
468- if(c.type === 'issue-edit' || (c.type === 'post' && c.text === '')) {
469- return h('div', [
470- c.issue ? renderIssueEdit(c) : null,
471- c.issues ? c.issues.map(renderIssueEdit) : null
472- ])
468 + if(c.type === 'issue-edit') {
469 + return
473470 }
474471
475472 if(c.type === 'issue') {
476473 return h('p', 'opened issue on ', repoLink(c.project))

Built with git-ssb-web