Fix copy markdown link (#2449)

This commit is contained in:
Elias Nahum 2018-12-12 09:36:06 -03:00 committed by GitHub
parent d0957e3879
commit 19f261a768
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -108,7 +108,7 @@ export default class MarkdownLink extends PureComponent {
}
};
handleCopyURL = () => {
handleLinkCopy = () => {
Clipboard.setString(this.props.href);
};