summaryrefslogtreecommitdiff
path: root/app/views/projects/diffs/_stats.html.haml
diff options
context:
space:
mode:
authorDouwe Maan <douwe@selenight.nl>2017-05-15 12:10:29 -0500
committerDouwe Maan <douwe@selenight.nl>2017-05-23 15:37:04 -0500
commitd9a0188d2f7dfc07b426d36eeebc2c94385c12ca (patch)
treebc824e6f0571823ca6b3bd55053c0f931ba740bc /app/views/projects/diffs/_stats.html.haml
parent52527be4387cb978402a330f2e4de96e586a62db (diff)
downloadgitlab-ce-d9a0188d2f7dfc07b426d36eeebc2c94385c12ca.tar.gz
Add question mark to Gitlab::Diff::File predicate methods
Diffstat (limited to 'app/views/projects/diffs/_stats.html.haml')
-rw-r--r--app/views/projects/diffs/_stats.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/projects/diffs/_stats.html.haml b/app/views/projects/diffs/_stats.html.haml
index fd4f3c8d3cc..e69c7f20d49 100644
--- a/app/views/projects/diffs/_stats.html.haml
+++ b/app/views/projects/diffs/_stats.html.haml
@@ -12,19 +12,19 @@
- diff_files.each do |diff_file|
- file_hash = hexdigest(diff_file.file_path)
%li
- - if diff_file.deleted_file
+ - if diff_file.deleted_file?
%span.deleted-file
%a{ href: "##{file_hash}" }
%i.fa.fa-minus
= diff_file.old_path
- - elsif diff_file.renamed_file
+ - elsif diff_file.renamed_file?
%span.renamed-file
%a{ href: "##{file_hash}" }
%i.fa.fa-minus
= diff_file.old_path
&rarr;
= diff_file.new_path
- - elsif diff_file.new_file
+ - elsif diff_file.new_file?
%span.new-file
%a{ href: "##{file_hash}" }
%i.fa.fa-plus