summaryrefslogtreecommitdiff
path: root/app/views/projects/notes
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-09-15 16:57:06 +0200
committerRémy Coutable <remy@rymai.me>2016-09-20 13:58:14 +0200
commit3970640b48fe9647ad97cf795aa2bb44a81d21a8 (patch)
tree1bf9542fc23ef35d2b150cb0c4c34dceea3465b2 /app/views/projects/notes
parent4276172b6977bb83de2dc86ecccd48984e09955c (diff)
downloadgitlab-ce-3970640b48fe9647ad97cf795aa2bb44a81d21a8.tar.gz
Fix note form hint showing slash commands supported for commits
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'app/views/projects/notes')
-rw-r--r--app/views/projects/notes/_form.html.haml6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/views/projects/notes/_form.html.haml b/app/views/projects/notes/_form.html.haml
index 402f5b52f5e..46b402545cd 100644
--- a/app/views/projects/notes/_form.html.haml
+++ b/app/views/projects/notes/_form.html.haml
@@ -1,3 +1,5 @@
+- supports_slash_commands = note_supports_slash_commands?(@note)
+
= form_for [@project.namespace.becomes(Namespace), @project, @note], remote: true, html: { :'data-type' => 'json', multipart: true, id: nil, class: "new-note js-new-note-form js-quick-submit common-note-form", "data-noteable-iid" => @note.noteable.try(:iid), }, authenticity_token: true do |f|
= hidden_field_tag :view, diff_view
= hidden_field_tag :line_type
@@ -14,8 +16,8 @@
attr: :note,
classes: 'note-textarea js-note-text',
placeholder: "Write a comment or drag your files here...",
- supports_slash_commands: true
- = render 'projects/notes/hints', supports_slash_commands: true
+ supports_slash_commands: supports_slash_commands
+ = render 'projects/notes/hints', supports_slash_commands: supports_slash_commands
.error-alert
.note-form-actions.clearfix