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.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/projects/notes/_notes.html.haml b/app/views/projects/notes/_notes.html.haml
index 022578bd6db..2b2bab09c74 100644
--- a/app/views/projects/notes/_notes.html.haml
+++ b/app/views/projects/notes/_notes.html.haml
@@ -1,7 +1,7 @@
-- if @discussions.present?
+- if defined?(@discussions)
- @discussions.each do |discussion|
- - if discussion.for_target?(@noteable)
- = render partial: "projects/notes/note", object: discussion.first_note, as: :note
+ - if discussion.individual_note?
+ = render partial: "projects/notes/note", collection: discussion.notes, as: :note
- else
= render 'discussions/discussion', discussion: discussion
- else