Skip to content
This repository was archived by the owner on May 24, 2021. It is now read-only.

Commit 4019d9e

Browse files
author
dev0tion
committed
Fix loading indicator for transactions
1 parent 3661ad1 commit 4019d9e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

StratisCore.UI/src/app/wallet/transactions/transactions.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<div *ngIf="(transactions | async) let _transactions;">
2+
<div *ngIf="loading && _transactions.length === 0" class="page-load"></div>
23
<cdk-virtual-scroll-viewport itemSize="84" class="min-vh-100">
34
<table class="table">
45
<tbody>
@@ -37,7 +38,6 @@
3738
</ng-container>
3839
</tbody>
3940
</table>
40-
<div *ngIf="loading && _transactions.length === 0" class="page-load"></div>
4141
<div *ngIf="!loading && _transactions.length === 0">
4242
<div class="d-flex align-items-center">
4343
<div class="row mx-auto">

0 commit comments

Comments
 (0)