| commit | ddabbf06b961e60c0e5f88715ff0c5d58211866a | [log] [tgz] |
|---|---|---|
| author | Ben Rohlfs <brohlfs@google.com> | Tue Feb 23 10:39:36 2021 +0100 |
| committer | Ben Rohlfs <brohlfs@google.com> | Tue Feb 23 14:09:49 2021 +0100 |
| tree | 47a9f3c0e3277fa3caacc9350bd03c73c7852c18 | |
| parent | 30b1818165146bfbf8e3cace71c623d0cd4f1a92 [diff] [blame] |
Change the long comment threshold from 5 to 10. Change-Id: Ia091ee1c0426a26c46fcb8dbe614839720f5b787
diff --git a/polygerrit-ui/app/elements/diff/gr-diff/gr-diff-utils.ts b/polygerrit-ui/app/elements/diff/gr-diff/gr-diff-utils.ts index 5edd353..66ac065 100644 --- a/polygerrit-ui/app/elements/diff/gr-diff/gr-diff-utils.ts +++ b/polygerrit-ui/app/elements/diff/gr-diff/gr-diff-utils.ts
@@ -40,7 +40,7 @@ } export function isLongCommentRange(range: CommentRange): boolean { - return range.end_line - range.start_line > 5; + return range.end_line - range.start_line > 10; } export function getLineNumber(lineEl?: Element | null): LineNumber | null {