From d3d66dbf183ecc3e6f4e6b37fd94a67e39bafab3 Mon Sep 17 00:00:00 2001 From: Mononaut Date: Fri, 19 Dec 2025 15:46:13 +0000 Subject: [PATCH] fix bad block 1 link --- frontend/src/app/components/block/block.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/components/block/block.component.ts b/frontend/src/app/components/block/block.component.ts index bc20125f8..b1b055957 100644 --- a/frontend/src/app/components/block/block.component.ts +++ b/frontend/src/app/components/block/block.component.ts @@ -569,7 +569,7 @@ export class BlockComponent implements OnInit, OnDestroy { } else { this.showPreviousBlocklink = true; } - if (this.latestBlock.height && this.latestBlock.height === this.blockHeight) { + if (this.latestBlock.height != null && this.latestBlock.height === this.blockHeight) { this.showNextBlocklink = false; } else { this.showNextBlocklink = true;