Commit 87a2762b authored by Sean McGivern's avatar Sean McGivern

Don't use diff_line_content for emails

parent 93f6fcc9
...@@ -51,11 +51,9 @@ module DiffHelper ...@@ -51,11 +51,9 @@ module DiffHelper
html.html_safe html.html_safe
end end
def diff_line_content(line, email: false) def diff_line_content(line)
if line.blank? if line.blank?
" ".html_safe " ".html_safe
elsif email
line.html_safe
else else
line.sub(/^[\-+ ]/, '').html_safe line.sub(/^[\-+ ]/, '').html_safe
end end
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
%a{href: "##{line_code}", data: { linenumber: link_text }} %a{href: "##{line_code}", data: { linenumber: link_text }}
%td.line_content.noteable_line{ class: type, data: (diff_view_line_data(line_code, diff_file.position(line), type) unless plain) }< %td.line_content.noteable_line{ class: type, data: (diff_view_line_data(line_code, diff_file.position(line), type) unless plain) }<
- if email - if email
%pre= diff_line_content(line.text, email: true) %pre= line.text
- else - else
= diff_line_content(line.text) = diff_line_content(line.text)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment