it hasn't been 54 years since this transaction was submitted

This commit is contained in:
Mononaut 2024-04-11 03:56:05 +00:00
parent affeb0a169
commit 89de288fec
No known key found for this signature in database
GPG Key ID: A3F058E41374C04E

View File

@ -460,16 +460,16 @@
<ng-template #firstSeenRow> <ng-template #firstSeenRow>
@if (isLoadingTx) { @if (isLoadingTx) {
<ng-container *ngTemplateOutlet="skeletonDetailsRow"></ng-container> <ng-container *ngTemplateOutlet="skeletonDetailsRow"></ng-container>
} @else if (transactionTime > 0) {
<tr>
<td i18n="transaction.first-seen|Transaction first seen">First seen</td>
<td><i><app-time kind="since" [time]="transactionTime" [fastRender]="true"></app-time></i></td>
</tr>
} @else if (transactionTime === -1) { } @else if (transactionTime === -1) {
<tr> <tr>
<td i18n="transaction.first-seen|Transaction first seen">First seen</td> <td i18n="transaction.first-seen|Transaction first seen">First seen</td>
<td><span class="skeleton-loader"></span></td> <td><span class="skeleton-loader"></span></td>
</tr> </tr>
} @else {
<tr>
<td i18n="transaction.first-seen|Transaction first seen">First seen</td>
<td><i><app-time kind="since" [time]="transactionTime" [fastRender]="true"></app-time></i></td>
</tr>
} }
</ng-template> </ng-template>