Fix copy markdown link (#2449)

This commit is contained in:
Elias Nahum 2018-12-12 09:36:06 -03:00
parent d19d6be716
commit e10d2d7171
No known key found for this signature in database
GPG key ID: E038DB71E0B61702

View file

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