diff options
author | gitlabhq <m@gitlabhq.com> | 2011-10-21 21:14:55 +0300 |
---|---|---|
committer | gitlabhq <m@gitlabhq.com> | 2011-10-21 21:14:55 +0300 |
commit | 32f4dc7cf917d152d703e338219d1c718b97a003 (patch) | |
tree | 5226ecd62b4df2be46b243cfb6338499fcf31777 | |
parent | 6d0175e1f641415574a8fc48909af2cb3a357882 (diff) | |
download | gitlab-ce-32f4dc7cf917d152d703e338219d1c718b97a003.tar.gz |
link to file for commit diff
-rw-r--r-- | app/views/commits/_diff.html.haml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/commits/_diff.html.haml b/app/views/commits/_diff.html.haml index 73652aaf9f7..c88e54307e9 100644 --- a/app/views/commits/_diff.html.haml +++ b/app/views/commits/_diff.html.haml @@ -31,7 +31,8 @@ - if diff.deleted_file %strong{:id => "#{diff.b_path}"}= diff.a_path - else - %strong{:id => "#{diff.b_path}"}= diff.b_path + = link_to tree_file_project_path(@project, @commit.id, diff.b_path) do + %strong{:id => "#{diff.b_path}"}= diff.b_path %br/ .diff_file_content - if file.text? |