Open hyperlinks in new tab

Closes #3467
This commit is contained in:
Jeffrey Fisher 2020-05-01 00:29:10 -07:00 committed by Sean Yesmunt
parent c535f76228
commit fda372e565

View file

@ -42,7 +42,7 @@ const SimpleLink = (props: SimpleLinkProps) => {
if (!href.startsWith('lbry://')) {
return (
<a href={href} title={title}>
<a href={href} title={title} target={'_blank'} rel={'noreferrer noopener'}>
{children}
</a>
);