Skip to content

Commit

Permalink
fix: Multifactor admin : group suggestor ins't working - EXO-67772 (#57)
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.

(cherry picked from commit 7bd219a)
  • Loading branch information
akhanfir authored and jihed525 committed Dec 27, 2023
1 parent 2f9637d commit 6698cd2
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 6698cd2

Please sign in to comment.