diff --git a/CHANGELOG.md b/CHANGELOG.md index b4bb6af9b..f0fe127cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Changed +### Fixed + * Show delete button on users own claims ([#2147](https://github.com/lbryio/lbry-desktop/pull/2147)) + + +## [0.26.1] - 2018-12-14 + ### Fixed * Channel subscribe button on search page ([#2146](https://github.com/lbryio/lbry-desktop/pull/2146)) * Close modal after redeeming reward code ([#2146](https://github.com/lbryio/lbry-desktop/pull/2146)) 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 (