mirror of
https://github.com/nextcloud/server.git
synced 2026-03-26 20:33:55 -04:00
fix(user_ldap): Use correct property to update login filter
Signed-off-by: Louis Chmn <louis@chmn.me>
This commit is contained in:
parent
499bbd479a
commit
ea4e5ae3e7
1 changed files with 1 additions and 1 deletions
|
|
@ -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) ?? ''
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue