diff options
author | Abhi Devireddy <abhi@devireddy.com> | 2012-03-07 11:41:39 -0600 |
---|---|---|
committer | Abhi Devireddy <abhi@devireddy.com> | 2012-03-07 11:41:39 -0600 |
commit | 32f04fc345352fce0ddcfe9c1c205e94ce185c35 (patch) | |
tree | bd06480f09d5777bdfb6db7e219a71cbe8f4b0f6 | |
parent | 98b484b996dd56f42a2c540cdebbba596d7b69cd (diff) | |
download | gitlab-ce-32f04fc345352fce0ddcfe9c1c205e94ce185c35.tar.gz |
This might fix the issue with commits showing up in the format.
Needs to be tested.
-rw-r--r-- | app/views/repositories/_branch.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/repositories/_branch.html.haml b/app/views/repositories/_branch.html.haml index 04f64fd5240..4742b92bd74 100644 --- a/app/views/repositories/_branch.html.haml +++ b/app/views/repositories/_branch.html.haml @@ -5,7 +5,7 @@ - if branch.name == @project.root_ref %span.label default %td - = link_to project_commit_path(@project, branch.commit.id) do + = link_to project_commit_path(@project, :id => branch.commit.id) do %code= branch.commit.id.to_s[0..10] = image_tag gravatar_icon(Commit.new(branch.commit).author_email), :class => "", :width => 16 |