fixes bug in lbryurl copy

This commit is contained in:
jessop 2018-12-04 13:11:24 -05:00
parent 959c06746d
commit 9c0e0b789e

View file

@ -27,6 +27,7 @@ class AssetInfo extends React.Component {
shortId: channelShortId, shortId: channelShortId,
}; };
channelCanonicalUrl = `${createCanonicalLink({channel})}`; channelCanonicalUrl = `${createCanonicalLink({channel})}`;
console.log(channelName)
} }
return ( return (
<div className='asset-info'> <div className='asset-info'>
@ -120,7 +121,7 @@ class AssetInfo extends React.Component {
} }
content={ content={
<ClickToCopy <ClickToCopy
id={'short-link'} id={'lbry-permanent-url'}
value={`${channelName}#${certificateId}/${name}`} value={`${channelName}#${certificateId}/${name}`}
/> />
} }