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

PR comment

This commit is contained in:
andreas-unleash 2022-06-07 14:21:36 +03:00
parent 539aa89639
commit de51478e19

View File

@ -1,4 +1,4 @@
import {SyntheticEvent, VFC} from 'react'; import { SyntheticEvent, VFC } from 'react';
import { ActionCell } from '../../../common/Table/cells/ActionCell/ActionCell'; import { ActionCell } from '../../../common/Table/cells/ActionCell/ActionCell';
import { Undo } from '@mui/icons-material'; import { Undo } from '@mui/icons-material';
import PermissionIconButton from '../../../common/PermissionIconButton/PermissionIconButton'; import PermissionIconButton from '../../../common/PermissionIconButton/PermissionIconButton';
@ -19,6 +19,7 @@ export const ReviveArchivedFeatureCell: VFC<IReviveArchivedFeatureCell> = ({
onClick={onRevive} onClick={onRevive}
projectId={project} projectId={project}
permission={ADMIN} permission={ADMIN}
tooltipProps={{ title: 'Revive feature' }}
> >
<Undo /> <Undo />
</PermissionIconButton> </PermissionIconButton>