Update UserRow.tsx
This commit is contained in:
parent
947fdf72ed
commit
76d671aa8a
1 changed files with 15 additions and 15 deletions
|
@ -49,6 +49,7 @@ export default ({ subuser }: Props) => {
|
||||||
<p css={tw`text-2xs text-neutral-500 uppercase`}>Permissions</p>
|
<p css={tw`text-2xs text-neutral-500 uppercase`}>Permissions</p>
|
||||||
</div>
|
</div>
|
||||||
{subuser.uuid !== uuid &&
|
{subuser.uuid !== uuid &&
|
||||||
|
<>
|
||||||
<Can action={'user.update'}>
|
<Can action={'user.update'}>
|
||||||
<button
|
<button
|
||||||
type={'button'}
|
type={'button'}
|
||||||
|
@ -59,11 +60,10 @@ export default ({ subuser }: Props) => {
|
||||||
<FontAwesomeIcon icon={faPencilAlt} />
|
<FontAwesomeIcon icon={faPencilAlt} />
|
||||||
</button>
|
</button>
|
||||||
</Can>
|
</Can>
|
||||||
}
|
|
||||||
{subuser.uuid !== uuid &&
|
|
||||||
<Can action={'user.delete'}>
|
<Can action={'user.delete'}>
|
||||||
<RemoveSubuserButton subuser={subuser} />
|
<RemoveSubuserButton subuser={subuser} />
|
||||||
</Can>
|
</Can>
|
||||||
|
</>
|
||||||
}
|
}
|
||||||
</GreyRowBox>
|
</GreyRowBox>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue