summaryrefslogtreecommitdiff
path: root/app/views/projects/notes/_notes_with_form.html.haml
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-11-17 16:08:58 +0100
committerDouwe Maan <douwe@gitlab.com>2015-11-17 16:33:38 +0100
commite49190cad933abc38271b46cded8150fd9b15568 (patch)
tree9bae94b9d8b91716a3bca2be0d8bb4835eee946a /app/views/projects/notes/_notes_with_form.html.haml
parent1c040b3f0a3ecb18fc8fdea3cf99b70edad8d873 (diff)
downloadgitlab-ce-param-view.tar.gz
Don't use params[:view] directly.param-view
Diffstat (limited to 'app/views/projects/notes/_notes_with_form.html.haml')
-rw-r--r--app/views/projects/notes/_notes_with_form.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/notes/_notes_with_form.html.haml b/app/views/projects/notes/_notes_with_form.html.haml
index 91cefa6d14d..066a1986f69 100644
--- a/app/views/projects/notes/_notes_with_form.html.haml
+++ b/app/views/projects/notes/_notes_with_form.html.haml
@@ -4,7 +4,7 @@
.js-main-target-form
- if can? current_user, :create_note, @project
- = render "projects/notes/form", view: params[:view]
+ = render "projects/notes/form", view: diff_view
:javascript
- window._notes = new Notes("#{namespace_project_notes_path(namespace_id: @project.namespace, target_id: @noteable.id, target_type: @noteable.class.name.underscore)}", #{@notes.map(&:id).to_json}, #{Time.now.to_i}, "#{params[:view]}")
+ window._notes = new Notes("#{namespace_project_notes_path(namespace_id: @project.namespace, target_id: @noteable.id, target_type: @noteable.class.name.underscore)}", #{@notes.map(&:id).to_json}, #{Time.now.to_i}, "#{diff_view}")