This commit is contained in:
btzr-io 2017-10-08 15:56:59 -06:00
parent 62053e6b36
commit 67475c690f
2 changed files with 5 additions and 2 deletions

View file

@ -27,7 +27,6 @@ class FileDetails extends React.PureComponent {
} }
const { description, language, license } = metadata; const { description, language, license } = metadata;
const { height } = claim;
const mediaType = lbry.getMediaType(contentType); const mediaType = lbry.getMediaType(contentType);
const downloadPath = fileInfo const downloadPath = fileInfo

View file

@ -75,7 +75,11 @@ class UriIndicator extends React.PureComponent {
} }
return ( return (
<Link navigate="/show" navigateParams={{ uri: channelLink }}> <Link
navigate="/show"
navigateParams={{ uri: channelLink }}
className="no-underline"
>
{inner} {inner}
</Link> </Link>
); );