17 lines
877 B
Text
17 lines
877 B
Text
- 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
|