diff --git a/src/renderer/component/fileActions/view.jsx b/src/renderer/component/fileActions/view.jsx index 2cf2fc712..cbc922da4 100644 --- a/src/renderer/component/fileActions/view.jsx +++ b/src/renderer/component/fileActions/view.jsx @@ -20,7 +20,7 @@ type Props = { class FileActions extends React.PureComponent { render() { const { fileInfo, uri, openModal, claimIsMine, claimId } = this.props; - const showDelete = fileInfo && Object.keys(fileInfo).length > 0; + const showDelete = (claimIsMine || (fileInfo && Object.keys(fileInfo).length > 0)) ; return (