Commit d4ec23b8 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
parent 21b028b5
...@@ -379,7 +379,9 @@ class Notes ...@@ -379,7 +379,9 @@ class Notes
# does it already have notes? # does it already have notes?
if nextRow.is(".notes_holder") if nextRow.is(".notes_holder")
$.proxy(@replyToDiscussionNote, nextRow.find(".js-discussion-reply-button")).call() replyButton = nextRow.find(".js-discussion-reply-button")
if replyButton.length > 0
$.proxy(@replyToDiscussionNote, replyButton).call()
else else
# add a notes row and insert the form # add a notes row and insert the form
row.after "<tr class=\"notes_holder js-temp-notes-holder\"><td class=\"notes_line\" colspan=\"2\"></td><td class=\"notes_content\"></td></tr>" row.after "<tr class=\"notes_holder js-temp-notes-holder\"><td class=\"notes_line\" colspan=\"2\"></td><td class=\"notes_content\"></td></tr>"
......
...@@ -108,7 +108,7 @@ describe "On a merge request", js: true do ...@@ -108,7 +108,7 @@ describe "On a merge request", js: true do
within("#note_#{note.id}") do within("#note_#{note.id}") do
should have_css(".note-last-update small") should have_css(".note-last-update small")
find(".note-last-update small").text.should match(/Edited just now/) find(".note-last-update small").text.should match(/Edited less than a minute ago/)
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment