2015-04-26 12:48:37 +05:30
|
|
|
- too_big = diff_file.diff_lines.count > Commit::DIFF_SAFE_LINES
|
|
|
|
- if too_big
|
2015-09-11 14:41:01 +05:30
|
|
|
.suppressed-container
|
|
|
|
%a.show-suppressed-diff.js-show-suppressed-diff Changes suppressed. Click to show.
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
%table.text-file.code.js-syntax-highlight{ data: diff_view_data, class: too_big ? 'hide' : '' }
|
2016-09-13 17:45:13 +05:30
|
|
|
= render partial: "projects/diffs/line",
|
|
|
|
collection: diff_file.highlighted_diff_lines,
|
|
|
|
as: :line,
|
2017-08-17 22:00:37 +05:30
|
|
|
locals: { diff_file: diff_file, discussions: @grouped_diff_discussions }
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
- if !diff_file.new_file && !diff_file.deleted_file && diff_file.highlighted_diff_lines.any?
|
|
|
|
- last_line = diff_file.highlighted_diff_lines.last
|
|
|
|
- if last_line.new_pos < total_lines
|
|
|
|
%tr.line_holder
|
|
|
|
= diff_match_line last_line.old_pos, last_line.new_pos, bottom: true
|