Browse Source

index: Add showDetails param to mempool.space URL

master
Miguel Medeiros 4 years ago
committed by GitHub
parent
commit
6217d86e66
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      frontend/components/Block.tsx

2
frontend/components/Block.tsx

@ -48,7 +48,7 @@ export function Block({ height, signals, miner }: IBlockProps) {
Miner: ${miner ?? "Unknown"}`; Miner: ${miner ?? "Unknown"}`;
return ( return (
<a href={`https://mempool.space/block/${height}`} target="_blank"> <a href={`https://mempool.space/block/${height}?showDetails=true`} target="_blank">
<BlockStyle title={hover} signals={signals}></BlockStyle> <BlockStyle title={hover} signals={signals}></BlockStyle>
</a> </a>
); );

Loading…
Cancel
Save