Display renamed files in diff views
Show both the old and new filenames when viewing the diff for a renamed file.
This commit is contained in:
parent
d790b2cbb8
commit
0084b8a776
1 changed files with 4 additions and 1 deletions
|
@ -10,7 +10,10 @@
|
|||
- if @commit.parent_ids.present?
|
||||
= view_file_btn(@commit.parent_id, diff_file, project)
|
||||
- else
|
||||
%span= diff_file.new_path
|
||||
- if diff_file.renamed_file
|
||||
%span= "#{diff_file.old_path} renamed to #{diff_file.new_path}"
|
||||
- else
|
||||
%span= diff_file.new_path
|
||||
- if diff_file.mode_changed?
|
||||
%span.file-mode= "#{diff_file.diff.a_mode} → #{diff_file.diff.b_mode}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue