summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-08-09 12:26:27 -0700
committerStan Hu <stanhu@gmail.com>2019-08-09 12:26:27 -0700
commit96aeeae18e1ca4decfc4955bc67640f299a2b0d6 (patch)
tree3e33f055d33d038fd042ca418bfb8120290df8a6
parent3af747657083e2d91922cdb9be5879f890ca50bb (diff)
downloadgitlab-ce-96aeeae18e1ca4decfc4955bc67640f299a2b0d6.tar.gz
Revert "Change 'data-toggle' => 'tab' to data-toggle: 'tab'"
This reverts commit 3af747657083e2d91922cdb9be5879f890ca50bb.
-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 31dc9c185fa..2aae938ee27 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