Skip to content

Commit

Permalink
Merge pull request #2168 from Invariant-Change/patch-10
Browse files Browse the repository at this point in the history
Full Permanent URL Copy Fix
  • Loading branch information
Sean Yesmunt authored Jan 8, 2019
2 parents 902f3b4 + 554d0a8 commit 242b60c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/renderer/component/fileCard/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 242b60c

Please sign in to comment.