diff options
author | Johannes Schleifenbaum <johannes@js-webcoding.de> | 2013-08-15 14:02:39 +0200 |
---|---|---|
committer | Johannes Schleifenbaum <johannes@js-webcoding.de> | 2013-08-15 14:02:39 +0200 |
commit | aaeaf7c973fb2d48a16cdd1b8af45c00c634611e (patch) | |
tree | bc44695e42f9ff75656b8d730cb232809b03031b /app | |
parent | 55582047413c639a4843f52f9869fafc01bf6522 (diff) | |
download | gitlab-ce-aaeaf7c973fb2d48a16cdd1b8af45c00c634611e.tar.gz |
Fix the link to the project branches
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/show.html.haml b/app/views/projects/show.html.haml index 3f764e944ac..1efea5d72d3 100644 --- a/app/views/projects/show.html.haml +++ b/app/views/projects/show.html.haml @@ -36,7 +36,7 @@ %p = link_to pluralize(@repository.round_commit_count, 'commit'), project_commits_path(@project, @ref || @repository.root_ref) %p - = link_to pluralize(@repository.branch_names.count, 'branch'), project_repository_path(@project) + = link_to pluralize(@repository.branch_names.count, 'branch'), project_branches_path(@project) %p = link_to pluralize(@repository.tag_names.count, 'tag'), project_tags_path(@project) |