diff options
author | Nicolas <nicolas@gitlab.com> | 2015-06-09 01:12:38 +0200 |
---|---|---|
committer | Nicolas <nicolas@gitlab.com> | 2015-06-09 14:45:38 +0200 |
commit | ebe4963871e4e2aa38b5b359af34d4f7062b7dfb (patch) | |
tree | 4cbaeab021489f2bf152ca2fe847c96b301579c4 /app/helpers | |
parent | b637f849503db06f38812184aec398f2e4e29d09 (diff) | |
download | gitlab-ce-ebe4963871e4e2aa38b5b359af34d4f7062b7dfb.tar.gz |
Move Project Members link from Settings to main menu.
Addresses #2278.
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/tab_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/tab_helper.rb b/app/helpers/tab_helper.rb index a1d263d9d3a..77727337f07 100644 --- a/app/helpers/tab_helper.rb +++ b/app/helpers/tab_helper.rb @@ -89,7 +89,7 @@ module TabHelper def project_tab_class return "active" if current_page?(controller: "/projects", action: :edit, id: @project) - if ['services', 'hooks', 'deploy_keys', 'project_members', 'protected_branches'].include? controller.controller_name + if ['services', 'hooks', 'deploy_keys', 'protected_branches'].include? controller.controller_name "active" end end |