Commit 61eb650d authored by Riyad Preukschas's avatar Riyad Preukschas

Rename 'notes/notes' partial to 'notes/notes_with_form'

parent cee230a1
= render "commits/commit_box" = render "commits/commit_box"
= render "commits/diffs", diffs: @commit.diffs = render "commits/diffs", diffs: @commit.diffs
= render "notes/notes", tid: @commit.id, tt: "commit" = render "notes/notes_with_form", tid: @commit.id, tt: "commit"
= render "notes/per_line_form" = render "notes/per_line_form"
......
...@@ -61,4 +61,4 @@ ...@@ -61,4 +61,4 @@
= markdown @issue.description = markdown @issue.description
.issue_notes#notes= render "notes/notes", tid: @issue.id, tt: "issue" .issue_notes#notes= render "notes/notes_with_form", tid: @issue.id, tt: "issue"
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
Diff Diff
.merge_request_notes#notes{ class: (controller.action_name == 'show') ? "" : "hide" } .merge_request_notes#notes{ class: (controller.action_name == 'show') ? "" : "hide" }
= render("notes/notes", tid: @merge_request.id, tt: "merge_request") = render("notes/notes_with_form", tid: @merge_request.id, tt: "merge_request")
.merge-request-diffs .merge-request-diffs
= render "merge_requests/show/diffs" if @diffs = render "merge_requests/show/diffs" if @diffs
.status .status
......
:plain :plain
$(".merge-request-notes").html("#{escape_javascript(render("notes/notes", tid: @merge_request.id, tt: "merge_request"))}"); $(".merge-request-notes").html("#{escape_javascript(render notes/notes_with_form", tid: @merge_request.id, tt: "merge_request")}");
%div.wall_page %div.wall_page
= render "notes/notes", tid: nil, tt: "wall" = render "notes/notes_with_form", tid: nil, tt: "wall"
...@@ -17,4 +17,4 @@ ...@@ -17,4 +17,4 @@
%div{class: current_user.dark_scheme ? "black" : ""} %div{class: current_user.dark_scheme ? "black" : ""}
= raw @snippet.colorize(options: { linenos: 'True'}) = raw @snippet.colorize(options: { linenos: 'True'})
= render "notes/notes", tid: @snippet.id, tt: "snippet" = render "notes/notes_with_form", tid: @snippet.id, tt: "snippet"
...@@ -21,4 +21,4 @@ ...@@ -21,4 +21,4 @@
Delete this page Delete this page
%hr %hr
.wiki_notes#notes= render "notes/notes", tid: @wiki.id, tt: "wiki" .wiki_notes#notes= render "notes/notes_with_form", tid: @wiki.id, tt: "wiki"
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