summaryrefslogtreecommitdiff
path: root/app/views/projects/notes/_notes.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/notes/_notes.html.haml')
-rw-r--r--app/views/projects/notes/_notes.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/notes/_notes.html.haml b/app/views/projects/notes/_notes.html.haml
index 022578bd6db..50809068453 100644
--- a/app/views/projects/notes/_notes.html.haml
+++ b/app/views/projects/notes/_notes.html.haml
@@ -1,7 +1,7 @@
- if @discussions.present?
- @discussions.each do |discussion|
- - if discussion.for_target?(@noteable)
- = render partial: "projects/notes/note", object: discussion.first_note, as: :note
+ - if discussion.render_as_individual_notes?
+ = render partial: "projects/notes/note", collection: discussion.notes, as: :note
- else
= render 'discussions/discussion', discussion: discussion
- else