Commit db75dae913e8365453ca231f101b067314a7ea71

Authored by Dmitriy Zaporozhets
2 parents 81092c01 e42fb4fd

Merge pull request #465 from skroutz/branches_commit_link

Fix broken commit link in branches page
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/views/repositories/_branch.html.haml
... ... @@ -5,7 +5,7 @@
5 5 - if branch.name == @project.root_ref
6 6 %span.label default
7 7 %td
8   - = link_to project_commits_path(@project, branch.commit.id) do
  8 + = link_to project_commit_path(@project, branch.commit.id) do
9 9 %code= branch.commit.id.to_s[0..10]
10 10  
11 11 = image_tag gravatar_icon(Commit.new(branch.commit).author_email), :class => "", :width => 16
... ...