We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 687fa0a commit 3906998Copy full SHA for 3906998
apps/user_ldap/src/components/SettingsTabs/ServerTab.vue
@@ -146,8 +146,7 @@ async function guessBaseDN() {
146
try {
147
loadingGuessBaseDN.value = true
148
const { changes } = await callWizard('guessBaseDN', props.configId)
149
- // Not using ldapConfigProxy to avoid triggering the save logic.
150
- ldapConfigs.value[props.configId].ldapBase = (changes!.ldap_base as string) ?? ''
+ ldapConfigProxy.value.ldapBase = (changes!.ldap_base as string) ?? ''
151
} finally {
152
loadingGuessBaseDN.value = false
153
}
0 commit comments