Commit afc78339 by Alexander Zobnin Committed by GitHub

Fix login page redirected from password reset (#24032)

parent 670c96a1
......@@ -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: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment