fix logic

This commit is contained in:
wh1te909
2024-10-31 21:14:44 +00:00
parent 02eeea50e3
commit 4270fd0d19

View File

@@ -94,7 +94,7 @@ onMounted(async () => {
watch(
() => ssoSettings.value.sso_enabled,
(newValue) => {
if (newValue) {
if (!newValue) {
ssoSettings.value.block_local_user_logon = false;
}
},