summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Lee <huacnlee@gmail.com>2015-11-16 12:00:37 +0800
committerJason Lee <huacnlee@gmail.com>2015-11-17 23:21:03 +0800
commit3ae1dee475dbeb9bdf62ed139292cba09b6c98bb (patch)
tree65b4a9f3b9eca3c9ab73387896b76df26b59d572
parentdf0110ba81a86b3e066c8b703e1c26d6d05a75da (diff)
downloadgitlab-ce-3ae1dee475dbeb9bdf62ed139292cba09b6c98bb.tar.gz
Avoid render edit_form when visitor can't edit them.
Reverted #9820, github/task_list need a form, textarea for update.
-rw-r--r--app/views/projects/notes/_note.html.haml3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/views/projects/notes/_note.html.haml b/app/views/projects/notes/_note.html.haml
index 88808301985..efa7dd01cc2 100644
--- a/app/views/projects/notes/_note.html.haml
+++ b/app/views/projects/notes/_note.html.haml
@@ -59,8 +59,7 @@
.note-text
= preserve do
= markdown(note.note, {no_header_anchors: true})
- - unless note.system?
- -# System notes can't be edited
+ - if note_editable?(note)
= render 'projects/notes/edit_form', note: note
- if note.attachment.url