git ssb

16+

Dominic / patchbay



Commit 751c7231c9c941924eb9b30d3e883cce71645f67

Render issue edits which are empty posts

cel committed on 11/1/2016, 6:07:20 PM
Parent: 287cfa70a645df435a34f56c682ad34f826eba00

Files changed

modules/git.jschanged
modules/git.jsView
@@ -292,9 +292,10 @@
292292 }) : null
293293 ]
294294 }
295295
296- if(c.type === 'issue-edit') {
296 + if(c.type === 'issue-edit'
297 + || (c.type === 'post' && c.text === '')) {
297298 return h('div',
298299 c.issue ? renderIssueEdit(c) : null,
299300 c.issues ? c.issues.map(renderIssueEdit) : null)
300301 }

Built with git-ssb-web