Merge pull request #2168 from Invariant-Change/patch-10
Full Permanent URL Copy Fix
This commit is contained in:
commit
242b60c084
2 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
|
||||
- Show delete button on users own claims ([#2147](https://github.com/lbryio/lbry-desktop/pull/2147))
|
||||
- Fix "copy" icon being cutoff for some users ([2167](https://github.com/lbryio/lbry-desktop/pull/2167))
|
||||
- Use correct url when copying vanity addresses ([#2168](https://github.com/lbryio/lbry-desktop/pull/2168))
|
||||
|
||||
## [0.26.1] - 2018-12-14
|
||||
|
||||
|
|
|
@ -99,7 +99,7 @@ class FileCard extends React.PureComponent<Props> {
|
|||
const handleContextMenu = event => {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
openCopyLinkMenu(convertToShareLink(uri), event);
|
||||
openCopyLinkMenu(convertToShareLink(claim.permanent_url), event);
|
||||
};
|
||||
|
||||
// We should be able to tab through cards
|
||||
|
|
Loading…
Reference in a new issue