diff options
author | Bryce Johnson <bryce@gitlab.com> | 2016-10-17 17:49:13 +0200 |
---|---|---|
committer | Bryce Johnson <bryce@gitlab.com> | 2016-10-18 11:12:41 +0200 |
commit | 8a62d0cec518f54dd93d8d6c6571dc2d545f46a1 (patch) | |
tree | 207bf43f6d38d3c39069f36c8bbe6af520c8de3d /app/views/devise | |
parent | a185c32bef3305371e02df0044c17ac00d9cb4f2 (diff) | |
download | gitlab-ce-8a62d0cec518f54dd93d8d6c6571dc2d545f46a1.tar.gz |
Fix href to server pane.
Diffstat (limited to 'app/views/devise')
-rw-r--r-- | app/views/devise/shared/_tabs_ldap.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/devise/shared/_tabs_ldap.html.haml b/app/views/devise/shared/_tabs_ldap.html.haml index 239170d5b16..a057f126c45 100644 --- a/app/views/devise/shared/_tabs_ldap.html.haml +++ b/app/views/devise/shared/_tabs_ldap.html.haml @@ -4,7 +4,7 @@ = link_to "Crowd", "#crowd", 'data-toggle' => 'tab' - @ldap_servers.each_with_index do |server, i| %li{class: (:active if i.zero? && !crowd_enabled?)} - = link_to server['label'], "#{server['provider_name']}", 'data-toggle' => 'tab' + = link_to server['label'], "##{server['provider_name']}", 'data-toggle' => 'tab' - if signin_enabled? %li = link_to 'Standard', '#ldap-standard', 'data-toggle' => 'tab' |