summaryrefslogtreecommitdiff
path: root/app/views/notes
diff options
context:
space:
mode:
authorRiyad Preukschas <riyad@informatik.uni-bremen.de>2012-10-29 19:37:37 +0100
committerRiyad Preukschas <riyad@informatik.uni-bremen.de>2012-12-03 22:51:55 +0100
commit6c6f415cae54be4dae4522e901ed55c9dae04a15 (patch)
tree6db6a4cdf9e22d77956cca9748843437f410868f /app/views/notes
parent5c2f6d7f050222d2601218a0bec1dadcee5fcfa0 (diff)
downloadgitlab-ce-6c6f415cae54be4dae4522e901ed55c9dae04a15.tar.gz
Fix appending diff line notes
Diffstat (limited to 'app/views/notes')
-rw-r--r--app/views/notes/_create_per_line_note.js.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/notes/_create_per_line_note.js.haml b/app/views/notes/_create_per_line_note.js.haml
index eea9eb38be4..6f74699996b 100644
--- a/app/views/notes/_create_per_line_note.js.haml
+++ b/app/views/notes/_create_per_line_note.js.haml
@@ -6,7 +6,7 @@
// find the reply button for this line
// (might not be there if this is the first note)
- var trRpl = $("a.line_note_reply_link[data-line-code='#{note.line_code}']").closest("tr");
+ var trRpl = $("a.line_note_reply_link[data-noteable-type='#{note.noteable_type}'][data-noteable-id='#{note.noteable_id}'][data-line-code='#{note.line_code}']").closest("tr");
if (trRpl.size() == 0) {
// find the commented line ...
var trEl = $(".#{note.line_code}").parent();