1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-14 00:19:16 +01:00

feat: allow frontend to delete single scim groups

This commit is contained in:
Simon Hornby 2025-02-03 11:45:27 +02:00
parent 33e139bce3
commit 5c5d48db1e
No known key found for this signature in database
GPG Key ID: 57BE3E58BA999B19
2 changed files with 1 additions and 5 deletions

View File

@ -270,11 +270,8 @@ export const Group: VFC = () => {
onClick={() => setRemoveOpen(true)} onClick={() => setRemoveOpen(true)}
permission={ADMIN} permission={ADMIN}
tooltipProps={{ tooltipProps={{
title: isScimGroup title: 'Delete group',
? scimGroupTooltip
: 'Delete group',
}} }}
disabled={isScimGroup}
> >
<Delete /> <Delete />
</PermissionIconButton> </PermissionIconButton>

View File

@ -125,7 +125,6 @@ export const GroupCardActions: FC<IGroupCardActions> = ({
onRemove(); onRemove();
handleClose(); handleClose();
}} }}
disabled={isScimGroup}
> >
<ListItemIcon> <ListItemIcon>
<Delete /> <Delete />