From 90690b5285a2fcd5124d13e65094b2114429bbf9 Mon Sep 17 00:00:00 2001 From: William Law Date: Mon, 15 Dec 2025 13:19:43 -0500 Subject: [PATCH] chore: improve UI readability --- ui/src/app/block/[hash]/page.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/ui/src/app/block/[hash]/page.tsx b/ui/src/app/block/[hash]/page.tsx index 939d9f7..69f54fc 100644 --- a/ui/src/app/block/[hash]/page.tsx +++ b/ui/src/app/block/[hash]/page.tsx @@ -118,14 +118,14 @@ function TransactionRow({ href={`${BLOCK_EXPLORER_URL}/tx/${tx.hash}`} target="_blank" rel="noopener noreferrer" - className="font-mono text-sm text-blue-600 hover:underline truncate" + className="font-mono text-sm text-blue-600 hover:underline break-all" onClick={(e) => e.stopPropagation()} > - {tx.hash.slice(0, 10)}...{tx.hash.slice(-8)} + {tx.hash} ) : ( - - {tx.hash.slice(0, 10)}...{tx.hash.slice(-8)} + + {tx.hash} )} {hasBundle && ( @@ -214,20 +214,20 @@ function BlockStats({ block }: { block: BlockData }) {
- Gas Used - + Gas Used + {block.gasUsed.toLocaleString()}
- Gas Limit - + Gas Limit + {block.gasLimit.toLocaleString()}
- Timestamp - + Timestamp + {new Date(Number(block.timestamp) * 1000).toLocaleString()}