Skip to content

Commit

Permalink
Fixed nested group
Browse files Browse the repository at this point in the history
  • Loading branch information
fdurand committed Nov 29, 2024
1 parent 50ae7a4 commit ea793a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const useLdapAttributes = (props) => {

watch(connectedToLdap, (newConnectionState) => {
const { type } = form.value || {}
const extras = (type === 'AD') ? ['memberOf:1.2.840.113556.1.4.1941'] : []
const extras = (type === 'AD') ? ['memberOf:1.2.840.113556.1.4.1941:'] : []
if (newConnectionState === true) {
ldapAttributesLoading.value = true
ldapClient.getAttributes().then((attributes) => {
Expand Down

0 comments on commit ea793a2

Please sign in to comment.