Fix login page redirected from password reset (#24032)

pull/24040/head
Alexander Zobnin 5 years ago committed by GitHub
parent 670c96a1db
commit afc78339bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      public/app/core/components/Login/LoginServiceButtons.tsx

@ -16,7 +16,7 @@ const loginServices: () => LoginServices = () => {
name: 'Google',
},
azuread: {
enabled: config.oauth.azuread,
enabled: oauthEnabled && config.oauth.azuread,
name: 'Microsoft',
},
github: {
@ -34,7 +34,7 @@ const loginServices: () => LoginServices = () => {
icon: 'grafana_com',
},
okta: {
enabled: config.oauth.okta,
enabled: oauthEnabled && config.oauth.okta,
name: 'Okta',
},
oauth: {

Loading…
Cancel
Save