Skip to content

Commit

Permalink
Fix search in group picker dialog (keycloak#25009)
Browse files Browse the repository at this point in the history
Closes keycloak#25008

Signed-off-by: Jon Koops <jonkoops@gmail.com>
  • Loading branch information
jonkoops committed Nov 25, 2023
1 parent 631debb commit 7b08895
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions js/apps/admin-ui/src/components/group/GroupPickerDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,7 @@ export const GroupPickerDialog = ({
canBrowse={canBrowse}
/>
{isSearching &&
group.subGroups?.length !== 0 &&
group.subGroups!.map((g) => (
group.subGroups?.map((g) => (
<GroupRow
key={g.id}
group={g}
Expand Down

0 comments on commit 7b08895

Please sign in to comment.