fix explorer links. closes #1344

This commit is contained in:
Alex Grintsvayg 2018-04-17 22:04:21 -04:00
parent 5a2afb41eb
commit 16de854b9d

View file

@ -9,7 +9,7 @@ type Props = {
const TransactionLink = (props: Props) => {
const { id } = props;
const href = `https://explorer.lbry.io/#!/transaction/${id}`;
const href = `https://explorer.lbry.io/tx/${id}`;
const label = id.substr(0, 7);
return <Button button="link" href={href} label={label} />;