summaryrefslogtreecommitdiff
path: root/app/views/projects/notes
diff options
context:
space:
mode:
authorFatih Acet <acetfatih@gmail.com>2016-11-16 00:32:55 +0300
committerFatih Acet <acetfatih@gmail.com>2017-01-04 23:37:54 +0300
commit18165f97858f0ea12668bec9045998dee5212ecf (patch)
tree076d47da956aeaf8327ce24f5b07e4670ea0f2b9 /app/views/projects/notes
parent56293399e6d7223e5d7287b191404d9756f245a4 (diff)
downloadgitlab-ce-18165f97858f0ea12668bec9045998dee5212ecf.tar.gz
Fix task list for single edit note widget changes.
Diffstat (limited to 'app/views/projects/notes')
-rw-r--r--app/views/projects/notes/_edit_form.html.haml3
-rw-r--r--app/views/projects/notes/_note.html.haml1
2 files changed, 4 insertions, 0 deletions
diff --git a/app/views/projects/notes/_edit_form.html.haml b/app/views/projects/notes/_edit_form.html.haml
index bf2f58a0cb1..8b09eae38f0 100644
--- a/app/views/projects/notes/_edit_form.html.haml
+++ b/app/views/projects/notes/_edit_form.html.haml
@@ -1,5 +1,8 @@
.note-edit-form
= form_tag '#', method: :put, remote: true, class: 'edit-note common-note-form js-quick-submit' do
+ = hidden_field_tag :authenticity_token, form_authenticity_token
+ = hidden_field_tag :target_id, '', class: 'formTargetId'
+ = hidden_field_tag :target_type, '', class: 'formTargetType'
= render layout: 'projects/md_preview', locals: { preview_class: 'md-preview' } do
= render 'projects/zen', attr: 'note[note]', classes: 'note-textarea js-note-text js-task-list-field', placeholder: "Write a comment or drag your files here..."
= render 'projects/notes/hints'
diff --git a/app/views/projects/notes/_note.html.haml b/app/views/projects/notes/_note.html.haml
index fc4cb3f4a6d..3c62c94eafc 100644
--- a/app/views/projects/notes/_note.html.haml
+++ b/app/views/projects/notes/_note.html.haml
@@ -69,6 +69,7 @@
- if note_editable
.original-note-content.hidden{data: {post_url: namespace_project_note_path(@project.namespace, @project, note), target_id: note.noteable.id, target_type: note.noteable.class.name.underscore}}
#{note.note}
+ %textarea.hidden.js-task-list-field.original-task-list #{note.note}
.note-awards
= render 'award_emoji/awards_block', awardable: note, inline: false
- if note.system