Merge "Make commit and patchset comments nicer"

This commit is contained in:
Zuul 2021-08-24 16:47:39 +00:00 committed by Gerrit Code Review
commit 550df25397
1 changed files with 4 additions and 0 deletions

View File

@ -502,6 +502,10 @@ class ChangeMessageBox(mywid.HyperText):
if inline_comments:
comment_text.append(u'\n')
for key, value in inline_comments.items():
if key == '/PATCHSET_LEVEL':
key = 'Patchset'
if key == '/COMMIT_MSG':
key = 'Commit message'
comment_text.append(('filename-inline-comment', u'%s' % key))
for patchset, line, comment in value:
location_str = ''