diff --git a/CHANGELOG b/CHANGELOG index 45383d97780..f6843aaa6a9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -19,6 +19,7 @@ v 7.1.0 - Fix LDAP TLS authentication (Boris HUISGEN) - Show VERSION information on project sidebar - Improve branch removal logic when accept MR + - Fix bug where comment form is spawned inside the Reply button v 7.0.0 - The CPU no longer overheats when you hold down the spacebar diff --git a/app/assets/javascripts/notes.js.coffee b/app/assets/javascripts/notes.js.coffee index 91a4ccaba43..607b109dc0b 100644 --- a/app/assets/javascripts/notes.js.coffee +++ b/app/assets/javascripts/notes.js.coffee @@ -376,7 +376,7 @@ class Notes ### replyToDiscussionNote: (e) => form = $(".js-new-note-form") - replyLink = $(e.target) + replyLink = $(e.target).closest(".js-discussion-reply-button") replyLink.hide() # insert the form after the button