Skip to content

Commit

Permalink
fix: Multifactor admin : group suggestor ins't working - EXO-67772
Browse files Browse the repository at this point in the history
Before this change, when open drawer de manage groups in Protected access to the platform, group suggestor isn't displayed and can't remove old saved groups. To resolve this problem, remplacer le exo-group-suggester par exo-identity-suggester. After this change, group suggestor is display spaces and is able to remove old saved groups in list.
  • Loading branch information
akhanfir committed Dec 25, 2023
1 parent b52fc08 commit 16cd7b5
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<v-flex xs12 class="pa-3">
<exo-identity-suggester
v-model="groups"
item-text="spaceId"
:ignore-items="ignoreItems"
:labels="labels"
:group-type="groupType"
Expand Down Expand Up @@ -87,12 +88,12 @@ export default {
id: `group:${group.groupName}`,
profile: {
avatarUrl: null,
fullName: group.label,
id: group.groupName
fullName: group.id,
id: group.groupName,
},
providerId: 'group',
remoteId: group.groupName,
spaceId: null,
spaceId: group.id,
});
}
}
Expand Down

0 comments on commit 16cd7b5

Please sign in to comment.