fix: only show download button if it's a file
This commit is contained in:
parent
8c6c271916
commit
34117017ec
|
@ -171,7 +171,9 @@ const FileDropdownMenu = ({ file }: { file: FileObject }) => {
|
||||||
<Row onClick={doArchive} icon={faFileArchive} title={'Archive'}/>
|
<Row onClick={doArchive} icon={faFileArchive} title={'Archive'}/>
|
||||||
</Can>
|
</Can>
|
||||||
}
|
}
|
||||||
|
{file.isFile &&
|
||||||
<Row onClick={doDownload} icon={faFileDownload} title={'Download'}/>
|
<Row onClick={doDownload} icon={faFileDownload} title={'Download'}/>
|
||||||
|
}
|
||||||
<Can action={'file.delete'}>
|
<Can action={'file.delete'}>
|
||||||
<Row onClick={() => setShowConfirmation(true)} icon={faTrashAlt} title={'Delete'} $danger/>
|
<Row onClick={() => setShowConfirmation(true)} icon={faTrashAlt} title={'Delete'} $danger/>
|
||||||
</Can>
|
</Can>
|
||||||
|
|
Loading…
Reference in New Issue