Skip to content

Commit

Permalink
[Group Detail] Update the groups member page to add spacing and wrap …
Browse files Browse the repository at this point in the history
…to roles for users (#176)
  • Loading branch information
savathoon authored Oct 30, 2024
1 parent 3173e61 commit 3c51142
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/pages/groups/Read.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,13 @@ export default function ReadGroup() {
</TableCell>
{group.type != 'role_group' ? (
<TableCell>
<Stack direction="row" spacing={1}>
<Stack
direction="row"
spacing={1}
sx={{
flexWrap: 'wrap',
rowGap: '.5rem',
}}>
{users.sort(sortOktaUserGroupMembers).map((user) =>
user.active_role_group_mapping == null ? (
<Chip
Expand Down

0 comments on commit 3c51142

Please sign in to comment.