Commit 751c7231c9c941924eb9b30d3e883cce71645f67
Render issue edits which are empty posts
cel committed on 11/1/2016, 6:07:20 PMParent: 287cfa70a645df435a34f56c682ad34f826eba00
Files changed
modules/git.js | changed |
modules/git.js | |||
---|---|---|---|
@@ -292,9 +292,10 @@ | |||
292 | 292 … | }) : null | |
293 | 293 … | ] | |
294 | 294 … | } | |
295 | 295 … | ||
296 | - if(c.type === 'issue-edit') { | ||
296 … | + if(c.type === 'issue-edit' | ||
297 … | + || (c.type === 'post' && c.text === '')) { | ||
297 | 298 … | return h('div', | |
298 | 299 … | c.issue ? renderIssueEdit(c) : null, | |
299 | 300 … | c.issues ? c.issues.map(renderIssueEdit) : null) | |
300 | 301 … | } |
Built with git-ssb-web