diff options
author | JonRB <4564448+eeyrjmr@users.noreply.github.com> | 2022-01-18 10:28:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 10:28:45 +0000 |
commit | 483409716dea15148289a12ce2b4644a7982e353 (patch) | |
tree | ea634300e7dc72bc35e3b29f1bfea8d3a7aa4d55 /web_src | |
parent | 089b4e6a4585a3d9d185abd9350e7c5d537cfa86 (diff) | |
download | gitea-483409716dea15148289a12ce2b4644a7982e353.tar.gz gitea-483409716dea15148289a12ce2b4644a7982e353.zip |
Place inline diff comment dialogs in the 4th column. (#18321)
Comment dialogs for inline comments should appear in 4th column (not 3rd column), this PR changes the column that the inline review comment is associated with.
This problem has occurred due to an unrecognised conflict between #17562 and #17315.
Fix as zeripath suggested in #18320
Fix #18320
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/js/features/repo-issue.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/js/features/repo-issue.js b/web_src/js/features/repo-issue.js index 6e57facfd2..59d5e7b286 100644 --- a/web_src/js/features/repo-issue.js +++ b/web_src/js/features/repo-issue.js @@ -500,7 +500,7 @@ export function initRepoPullRequestReview() { <td class="lines-type-marker"></td> <td class="add-comment-right"></td> ` : ` - <td colspan="2" class="lines-num"></td> + <td colspan="3" class="lines-num"></td> <td class="add-comment-left add-comment-right" colspan="2"></td> `} </tr>`); |