fix(user_ldap): Use correct property to update login filter

Signed-off-by: Louis Chmn <louis@chmn.me>
This commit is contained in:
Louis Chmn
2025-11-21 18:16:47 +01:00
committed by nextcloud-command
parent 499bbd479a
commit ea4e5ae3e7

View File

@@ -120,7 +120,7 @@ async function reloadFilters() {
const response2 = await callWizard('getUserLoginFilter', props.configId)
// Not using ldapConfig to avoid triggering the save logic.
ldapConfigs.value[props.configId]!.ldapLoginFilter = (response2.changes?.ldap_userlogin_filter as string | undefined) ?? ''
ldapConfigs.value[props.configId]!.ldapLoginFilter = (response2.changes?.ldap_login_filter as string | undefined) ?? ''
}
}