From 44ccf2b1148e53a3b9148ea90a2f45cc8c8a000e Mon Sep 17 00:00:00 2001 From: Fatih Acet Date: Wed, 28 Jun 2017 16:21:10 +0300 Subject: [PATCH] IssueNotesRefactor: Change data attr path. --- app/views/projects/issues/_discussion.html.haml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/views/projects/issues/_discussion.html.haml b/app/views/projects/issues/_discussion.html.haml index 04e3211fb87..8e4b9f8910a 100644 --- a/app/views/projects/issues/_discussion.html.haml +++ b/app/views/projects/issues/_discussion.html.haml @@ -3,7 +3,7 @@ = link_to 'Reopen issue', issue_path(@issue, issue: {state_event: :reopen}, format: 'json'), data: {original_text: "Reopen issue", alternative_text: "Comment & reopen issue"}, class: "btn btn-nr btn-reopen btn-comment js-note-target-reopen #{issue_button_visibility(@issue, false)}", title: 'Reopen issue' = link_to 'Close issue', issue_path(@issue, issue: {state_event: :close}, format: 'json'), data: {original_text: "Close issue", alternative_text: "Comment & close issue"}, class: "btn btn-nr btn-close btn-comment js-note-target-close #{issue_button_visibility(@issue, true)}", title: 'Close issue' -%section{ data: { discussions_path: discussions_namespace_project_issue_path(@project.namespace, @project, @issue, format: :json) } } +%section{ data: { discussions_path: discussions_namespace_project_issue_path(@project.namespace, @project, @issue, format: :json), new_session_path: new_session_path(:user, redirect_to_referer: 'yes') } } #js-notes - content_for :page_specific_javascripts do = webpack_bundle_tag 'common_vue' @@ -16,5 +16,3 @@ :javascript window.gl.issueData = #{serialize_issuable(@issue)}; window.gl.currentUserData = #{UserSerializer.new.represent(current_user).to_json}; - -%section#note-form{ data: { new_session_path: new_session_path(:user, redirect_to_referer: 'yes') } }