diff --git a/CHANGELOG b/CHANGELOG
index 45383d977808aadd3b34fc60a23c196ff7a35a38..f6843aaa6a9745478aef5d0fab6e8a402b012f21 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 91a4ccaba431d17cc38d005a9d2f4fea459332a6..607b109dc0b7b01079b9ca34c4c53393487dc38a 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