We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9b75ed commit 71b4e03Copy full SHA for 71b4e03
client/app/pages/settings/components/AuthSettings/index.jsx
@@ -15,7 +15,10 @@ export default function AuthSettings(props) {
15
changes => {
16
const allSettings = { ...values, ...changes };
17
const allAuthMethodsDisabled =
18
- !clientConfig.azureLoginEnabled &&!clientConfig.googleLoginEnabled && !clientConfig.ldapLoginEnabled && !allSettings.auth_saml_enabled;
+ !clientConfig.azureLoginEnabled &&
19
+ !clientConfig.googleLoginEnabled &&
20
+ !clientConfig.ldapLoginEnabled &&
21
+ !allSettings.auth_saml_enabled;
22
if (allAuthMethodsDisabled) {
23
changes = { ...changes, auth_password_login_enabled: true };
24
}
0 commit comments