From 4c807866a34918472f01300b6995478dcd5762de Mon Sep 17 00:00:00 2001 From: softsimon Date: Mon, 8 Apr 2024 21:44:29 +0900 Subject: [PATCH] Fix first seen skeleton loader --- .../components/transaction/transaction.component.html | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index a699d0bf0..9eec29c93 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -458,13 +458,18 @@ - @if (!isLoadingTx && transactionTime !== -1) { + @if (isLoadingTx) { + + } @else if (transactionTime === -1) { + + First seen + + + } @else { First seen - } @else { - }