Skip to content

Commit 85768b4

Browse files
committed
fix(user_ldap): Use correct property to update login filter
Signed-off-by: Louis Chmn <[email protected]>
1 parent d8a7385 commit 85768b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/user_ldap/src/components/SettingsTabs/UsersTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ async function reloadFilters() {
120120
121121
const response2 = await callWizard('getUserLoginFilter', props.configId)
122122
// Not using ldapConfig to avoid triggering the save logic.
123-
ldapConfigs.value[props.configId]!.ldapLoginFilter = (response2.changes?.ldap_userlogin_filter as string | undefined) ?? ''
123+
ldapConfigs.value[props.configId]!.ldapLoginFilter = (response2.changes?.ldap_login_filter as string | undefined) ?? ''
124124
}
125125
}
126126

0 commit comments

Comments
 (0)