diff options
author | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2018-06-05 17:58:14 -0700 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2018-06-05 17:58:14 -0700 |
commit | cd47c0b807948129909f03ff78800a3906b7d436 (patch) | |
tree | 9f26e03d90f4c4cc377f280546562ad99d776b69 | |
parent | 53457cb0d45c40c3bf9d09597bef162c7a78825e (diff) | |
download | gitlab-ce-cd47c0b807948129909f03ff78800a3906b7d436.tar.gz |
Fix member tabs
-rw-r--r-- | app/views/projects/project_members/index.html.haml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/projects/project_members/index.html.haml b/app/views/projects/project_members/index.html.haml index a56023e98cd..0c5be8adc3d 100644 --- a/app/views/projects/project_members/index.html.haml +++ b/app/views/projects/project_members/index.html.haml @@ -18,11 +18,11 @@ .light - if can?(current_user, :admin_project_member, @project) %ul.nav-links.nav.nav-tabs.gitlab-tabs{ role: 'tablist' } - %li.active{ role: 'presentation' } - %a{ href: '#add-member-pane', id: 'add-member-tab', data: { toggle: 'tab' }, role: 'tab' } Add member + %li.nav-tab{ role: 'presentation' } + %a.nav-link.active{ href: '#add-member-pane', id: 'add-member-tab', data: { toggle: 'tab' }, role: 'tab' } Add member - if @project.allowed_to_share_with_group? - %li{ role: 'presentation' } - %a{ href: '#share-with-group-pane', id: 'share-with-group-tab', data: { toggle: 'tab' }, role: 'tab' } Share with group + %li.nav-tab{ role: 'presentation' } + %a.nav-link{ href: '#share-with-group-pane', id: 'share-with-group-tab', data: { toggle: 'tab' }, role: 'tab' } Share with group .tab-content.gitlab-tab-content .tab-pane.active{ id: 'add-member-pane', role: 'tabpanel' } |