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: 2e621c4082d7b0c2f707f02574bef12fac4a825c (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