mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Fix login page redirected from password reset (#24032)
This commit is contained in:
parent
670c96a1db
commit
afc78339bd
@ -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…
Reference in New Issue
Block a user