Merge pull request from lbryio/fix-1756

Fix  - Remove check for div
This commit is contained in:
Sean Yesmunt 2018-07-11 20:14:39 -04:00 committed by GitHub
commit 97e2c1df53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 28 deletions
CHANGELOG.md
src/renderer/page/file

View file

@ -33,6 +33,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
* Console errors when multiple downloads for same claim exist ([#1724](https://github.com/lbryio/lbry-app/pull/1724))
* App version in dev mode ([#1722](https://github.com/lbryio/lbry-app/pull/1722))
* Long URI name displays in transaction list/Help ([#1694](https://github.com/lbryio/lbry-app/pull/1694))/([#1692](https://github.com/lbryio/lbry-app/pull/1692))
* Edit option missing from certain published claims ([#175](https://github.com/lbryio/lbry-desktop/issues/1756))
### Changed
* Show claim name, instead of URI, when loading a channel([#1711](https://github.com/lbryio/lbry-app/pull/1711))

View file

@ -203,7 +203,6 @@ class FilePage extends React.Component<Props> {
<UriIndicator uri={uri} link />
</div>
<div className="card__actions card__actions--no-margin card__actions--between">
{(!claimIsMine || subscriptionUri || speechSharable) && (
<div className="card__actions">
{claimIsMine ? (
<Button
@ -230,7 +229,6 @@ class FilePage extends React.Component<Props> {
<ViewOnWebButton claimId={claim.claim_id} claimName={claim.name} />
)}
</div>
)}
<div className="card__actions">
<FileDownloadLink uri={uri} />