Commit 275db3c5 authored by Robert Speicher's avatar Robert Speicher

Fix paths in commits/_head

parent 0887dda8
%ul.nav.nav-tabs %ul.nav.nav-tabs
%li= render partial: 'shared/ref_switcher', locals: {destination: 'commits'} %li= render partial: 'shared/ref_switcher', locals: {destination: 'commits'}
%li{class: "#{'active' if current_page?(project_commits_path(@project)) }"} %li{class: "#{'active' if current_controller?(:commit, :commits)}"}
= link_to project_commits_path(@project) do = link_to project_commits_path(@project, @project.root_ref) do
Commits Commits
%li{class: "#{'active' if current_controller?(:compare)}"} %li{class: "#{'active' if current_controller?(:compare)}"}
= link_to project_compare_index_path(@project) do = link_to project_compare_index_path(@project) do
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
Tags Tags
%span.badge= @project.repo.tag_count %span.badge= @project.repo.tag_count
- if current_page?(project_commits_path(@project)) && current_user.private_token - if current_controller?(:commits) && current_user.private_token
%li.right %li.right
%span.rss-icon %span.rss-icon
= link_to project_commits_path(@project, @ref, {format: :atom, private_token: current_user.private_token}), title: "Feed" do = link_to project_commits_path(@project, @ref, {format: :atom, private_token: current_user.private_token}), title: "Feed" do
......
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