aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js
diff options
context:
space:
mode:
authorCirno the Strongest <1447794+CirnoT@users.noreply.github.com>2020-05-16 00:54:18 +0200
committerGitHub <noreply@github.com>2020-05-15 18:54:18 -0400
commitc483419184b3f04483dc727de93b0ef4b46af9fb (patch)
tree4a6717382ef4da66d4dcd82a74ce96a130296de7 /web_src/js
parentdb87e91227d471b516d0c6b0423539ff54833f92 (diff)
downloadgitea-c483419184b3f04483dc727de93b0ef4b46af9fb.tar.gz
gitea-c483419184b3f04483dc727de93b0ef4b46af9fb.zip
Better styling for code review comment form (#11413)
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'web_src/js')
-rw-r--r--web_src/js/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js
index 91d16192de..4cb8cff443 100644
--- a/web_src/js/index.js
+++ b/web_src/js/index.js
@@ -1242,7 +1242,7 @@ function initPullRequestReview() {
if (!ntr.hasClass('add-comment')) {
ntr = $(`<tr class="add-comment">${
isSplit ? '<td class="lines-num"></td><td class="lines-type-marker"></td><td class="add-comment-left"></td><td class="lines-num"></td><td class="lines-type-marker"></td><td class="add-comment-right"></td>' :
- '<td class="lines-num"></td><td class="lines-num"></td><td class="lines-type-marker"></td><td class="add-comment-left add-comment-right"></td>'
+ '<td class="lines-num"></td><td class="lines-num"></td><td class="add-comment-left add-comment-right" colspan="2"></td>'
}</tr>`);
tr.after(ntr);
}