summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2017-01-12 12:03:24 -0500
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-01-19 14:44:06 -0600
commit28b4407bded6dd526bfafa5e498b4ac109fec7f7 (patch)
tree4ed5f2d51fc73ebabbd38158f648eb23111d7d0c
parent815c0910968fb4c0f0c787af5e7733c71284a274 (diff)
downloadgitlab-ce-28b4407bded6dd526bfafa5e498b4ac109fec7f7.tar.gz
Fix haml linter errors
-rw-r--r--app/views/projects/diffs/_file_header.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/projects/diffs/_file_header.html.haml b/app/views/projects/diffs/_file_header.html.haml
index 59b91c057a8..1e5ac4ed38c 100644
--- a/app/views/projects/diffs/_file_header.html.haml
+++ b/app/views/projects/diffs/_file_header.html.haml
@@ -10,13 +10,13 @@
- if diff_file.renamed_file
- old_path, new_path = mark_inline_diffs(diff_file.old_path, diff_file.new_path)
- %strong.file-title-name.has-tooltip{data: { title: old_path } }
+ %strong.file-title-name.has-tooltip{ data: { title: old_path } }
= old_path
&rarr;
- %strong.file-title-name.has-tooltip{data: { title: new_path } }
+ %strong.file-title-name.has-tooltip{ data: { title: new_path } }
= new_path
- else
- %strong.file-title-name.has-tooltip{data: { title: diff_file.new_path } }
+ %strong.file-title-name.has-tooltip{ data: { title: diff_file.new_path } }
= diff_file.new_path
- if diff_file.deleted_file
deleted