git ssb

30+

cel / git-ssb-web



Commit ce68a9919500012226d1d1cfcb25b664e69a3d41

Don't show duplicate textareas for line comment

Fix %j+WNCXHZHq3hwRCiDHhIoB1e8dJOzs0oabo74KqcdOk=.sha256
cel committed on 11/24/2017, 5:18:09 PM
Parent: bf96de64d7688c54e9752ed79c0d041d4ef21828

Files changed

lib/repos/index.jschanged
lib/repos/index.jsView
@@ -913,17 +913,16 @@
913913 : '')
914914 : '') + '</td>'
915915 }).join('') +
916916 '<td class="code-text">' + html + '</td></tr>' +
917- (commit && query.comment === id ?
918- '<tr><td colspan=4>' +
919- forms.lineComment(req, repo, updateId, commit, filename, newLineNum) +
920- '</td></tr>'
921- : '') +
922917 (lineCommentThreads[newLineNum] ?
923918 '<tr><td colspan=4>' +
924919 lineCommentThreads[newLineNum] +
925920 '</td></tr>'
921 + : commit && query.comment === id ?
922 + '<tr><td colspan=4>' +
923 + forms.lineComment(req, repo, updateId, commit, filename, newLineNum) +
arj %cNLVIfTofk2kPE90MVaZqnCVMw7BuiBNkjaxqvD78WA=.sha256 · 11/24/2017, 8:32:43 PM

This is awesome! :rocket:

924 + '</td></tr>'
926925 : '')
927926 }))
928927 })
929928 return [].concat.apply([], groups).join('')

Built with git-ssb-web