summaryrefslogtreecommitdiff
path: root/app/views/notify/_note_mr_or_commit_email.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/notify/_note_mr_or_commit_email.html.haml')
-rw-r--r--app/views/notify/_note_mr_or_commit_email.html.haml9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/views/notify/_note_mr_or_commit_email.html.haml b/app/views/notify/_note_mr_or_commit_email.html.haml
index 3e2046aa9cf..7033842b557 100644
--- a/app/views/notify/_note_mr_or_commit_email.html.haml
+++ b/app/views/notify/_note_mr_or_commit_email.html.haml
@@ -1,15 +1,16 @@
= content_for :head do
= stylesheet_link_tag 'mailers/highlighted_diff_email'
-- if note.diff_note? && note.diff_file
- = link_to note.diff_file.file_path, @target_url, class: 'details'
+- if @note.diff_note? && @note.diff_file
+ on
+ = link_to @note.diff_file.file_path, @target_url, class: 'details'
\:
%table
= render partial: "projects/diffs/line",
- collection: discussion.truncated_diff_lines,
+ collection: @discussion.highlighted_diff_lines(@discussion.truncated_diff_lines),
as: :line,
- locals: { diff_file: note.diff_file,
+ locals: { diff_file: @note.diff_file,
plain: true,
email: true }