diff options
author | Stan Hu <stanhu@gmail.com> | 2019-08-09 12:21:11 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2019-08-09 12:21:11 -0700 |
commit | 3af747657083e2d91922cdb9be5879f890ca50bb (patch) | |
tree | 8070f220404f608a5cbcd6a2b54846b880be573e /app/views/groups/group_members | |
parent | 917efc4d68496737551d0fd755b585cc73877ebc (diff) | |
download | gitlab-ce-3af747657083e2d91922cdb9be5879f890ca50bb.tar.gz |
Change 'data-toggle' => 'tab' to data-toggle: 'tab'
Diffstat (limited to 'app/views/groups/group_members')
-rw-r--r-- | app/views/groups/group_members/index.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/groups/group_members/index.html.haml b/app/views/groups/group_members/index.html.haml index 2aae938ee27..31dc9c185fa 100644 --- a/app/views/groups/group_members/index.html.haml +++ b/app/views/groups/group_members/index.html.haml @@ -19,13 +19,13 @@ %ul.nav-links.mobile-separator.nav.nav-tabs.clearfix %li.nav-item - = link_to "#existing_members", class: ["nav-link", ("active" unless pending_active)] , 'data-toggle' => 'tab' do + = link_to "#existing_members", class: ["nav-link", ("active" unless pending_active)] , data-toggle: 'tab' do %span = _("Existing") %span.badge.badge-pill= @members.total_count - if show_invited_members %li.nav-item - = link_to "#invited_members", class: ["nav-link", ("active" if pending_active)], 'data-toggle' => 'tab' do + = link_to "#invited_members", class: ["nav-link", ("active" if pending_active)], data-toggle: 'tab' do %span = _("Pending") %span.badge.badge-pill= @invited_members.total_count |