Commit 0084b8a7 authored by Vinnie Okada's avatar Vinnie Okada

Display renamed files in diff views

Show both the old and new filenames when viewing the diff for a renamed
file.
parent d790b2cb
...@@ -9,6 +9,9 @@ ...@@ -9,6 +9,9 @@
.diff-btn-group .diff-btn-group
- if @commit.parent_ids.present? - if @commit.parent_ids.present?
= view_file_btn(@commit.parent_id, diff_file, project) = view_file_btn(@commit.parent_id, diff_file, project)
- else
- if diff_file.renamed_file
%span= "#{diff_file.old_path} renamed to #{diff_file.new_path}"
- else - else
%span= diff_file.new_path %span= diff_file.new_path
- if diff_file.mode_changed? - if diff_file.mode_changed?
......
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