mirror of
https://github.com/grafana/grafana.git
synced 2026-07-30 00:08:10 -05:00
Fix login page redirected from password reset (#24032)
This commit is contained in:
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user