summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-08-09 12:21:11 -0700
committerStan Hu <stanhu@gmail.com>2019-08-09 12:21:11 -0700
commit3af747657083e2d91922cdb9be5879f890ca50bb (patch)
tree8070f220404f608a5cbcd6a2b54846b880be573e
parent917efc4d68496737551d0fd755b585cc73877ebc (diff)
downloadgitlab-ce-3af747657083e2d91922cdb9be5879f890ca50bb.tar.gz
Change 'data-toggle' => 'tab' to data-toggle: 'tab'
-rw-r--r--app/views/groups/group_members/index.html.haml4
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