fix: add key 'Move to Trash' (#1391)

This commit is contained in:
Himself65
2023-03-07 14:21:59 -06:00
committed by GitHub
parent 3b8f7536f3
commit 1362584880
6 changed files with 7 additions and 5 deletions

View File

@@ -57,12 +57,13 @@ export const OperationCell: React.FC<OperationCellProps> = ({
{t('Open in new tab')}
</MenuItem>
<MenuItem
data-testid="move-to-trash"
onClick={() => {
setOpen(true);
}}
icon={<DeleteTemporarilyIcon />}
>
{t('Delete')}
{t('Move to Trash')}
</MenuItem>
</>
);