Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_parallel_diff_discussion.html.haml « discussions « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03b428714b9500ebf17a4c36c7318614fc8e5896 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- expanded = [*discussions_left, *discussions_right].any?(&:expanded?)
%tr.notes_holder{ class: ('hide' unless expanded) }
  - if discussions_left
    %td.notes-content.parallel.old{ colspan: 2 }
      .content{ class: ('hide' unless discussions_left.any?(&:expanded?)) }
        = render partial: "discussions/notes", collection: discussions_left, as: :discussion, line_type: 'old', locals: { disable_collapse_class: true }
  - else
    %td.notes-content.parallel.old{ colspan: 2 }
      .content

  - if discussions_right
    %td.notes-content.parallel.new{ colspan: 2 }
      .content{ class: ('hide' unless discussions_right.any?(&:expanded?)) }
        = render partial: "discussions/notes", collection: discussions_right, as: :discussion, line_type: 'new', locals: { disable_collapse_class: true }
  - else
    %td.notes-content.parallel.new{ colspan: 2 }
      .content