Skip to content
Snippets Groups Projects
Commit d88a5c1d authored by Douwe Maan's avatar Douwe Maan
Browse files

Address feedback

parent 68f7fd8b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -26,10 +26,8 @@
 
%h4 #{pluralize @message.diffs_count, "changed file"}:
 
- diff_files = @message.diffs
%ul
- diff_files.each do |diff_file|
- @message.diffs.each do |diff_file|
%li.file-stats
%a{ href: "#{@message.target_url if @message.disable_diffs?}##{hexdigest(diff_file.file_path)}" }
- if diff_file.deleted_file?
Loading
Loading
@@ -52,7 +50,7 @@
%h5 The diff was not included because it is too large.
- else
%h4 Changes:
- diff_files.each do |diff_file|
- @message.diffs.each do |diff_file|
- file_hash = hexdigest(diff_file.file_path)
%li{ id: file_hash }
%a{ href: @message.target_url + "##{file_hash}" }<
Loading
Loading
Loading
Loading
@@ -2,7 +2,7 @@ module Gitlab
module Diff
module FileCollection
class Base
attr_reader :project, :diff_options, :diff_view, :diff_refs, :fallback_diff_refs
attr_reader :project, :diff_options, :diff_refs, :fallback_diff_refs
 
delegate :count, :size, :real_size, to: :diff_files
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment