gitlab-org--gitlab-foss/app/views/projects/notes/_notes.html.haml

12 lines
436 B
Text

- if @discussions.present?
- @discussions.each do |discussion_notes|
- note = discussion_notes.first
- if note_for_main_target?(note)
= render discussion_notes
- else
= render 'projects/notes/discussion', discussion_notes: discussion_notes
- else
- @notes.each do |note|
- next unless note.author
- next if note.cross_reference? && note.referenced_mentionables(current_user).empty?
= render note