From 534f2e27818af75bdf75b69f3cac0cff210cd52b Mon Sep 17 00:00:00 2001 From: softsimon Date: Thu, 1 Dec 2022 20:23:45 +0900 Subject: [PATCH] Set auditDataMissing as soon as we know the block height --- frontend/src/app/components/block/block.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/app/components/block/block.component.ts b/frontend/src/app/components/block/block.component.ts index f861e9b7c..e4806f8c6 100644 --- a/frontend/src/app/components/block/block.component.ts +++ b/frontend/src/app/components/block/block.component.ts @@ -142,6 +142,7 @@ export class BlockComponent implements OnInit, OnDestroy { if (history.state.data && history.state.data.blockHeight) { this.blockHeight = history.state.data.blockHeight; + this.updateAuditDataMissingFromBlockHeight(this.blockHeight); } let isBlockHeight = false;