diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-31 21:08:52 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-31 21:08:52 +0000 |
commit | d5d3c03598df712550acf0c6463a61c6e7dcc19e (patch) | |
tree | d0fdf0f9cd6df46aea6ed16b6556f44055efb642 /app/views/explore | |
parent | 0434f38ef1dce4fe640fe1e4542235746ceb943c (diff) | |
download | gitlab-ce-d5d3c03598df712550acf0c6463a61c6e7dcc19e.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/views/explore')
-rw-r--r-- | app/views/explore/projects/_nav.html.haml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/views/explore/projects/_nav.html.haml b/app/views/explore/projects/_nav.html.haml index bf65c19b720..65b7d055843 100644 --- a/app/views/explore/projects/_nav.html.haml +++ b/app/views/explore/projects/_nav.html.haml @@ -1,14 +1,14 @@ .top-area %ul.nav-links.nav.nav-tabs - = nav_link(page: [trending_explore_projects_path, explore_root_path]) do - = link_to trending_explore_projects_path do - = _('Trending') + = nav_link(page: [explore_projects_path, explore_root_path]) do + = link_to explore_projects_path do + = _('All') = nav_link(page: starred_explore_projects_path) do = link_to starred_explore_projects_path do = _('Most stars') - = nav_link(page: explore_projects_path) do - = link_to explore_projects_path do - = _('All') + = nav_link(page: trending_explore_projects_path) do + = link_to trending_explore_projects_path do + = _('Trending') .nav-controls - unless current_user |