Browse Source
index: Add showDetails param to mempool.space URL
master
Miguel Medeiros
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
frontend/components/Block.tsx
|
|
@ -48,7 +48,7 @@ export function Block({ height, signals, miner }: IBlockProps) { |
|
|
|
Miner: ${miner ?? "Unknown"}`;
|
|
|
|
|
|
|
|
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> |
|
|
|
</a> |
|
|
|
); |
|
|
|