Skip to content

Commit

Permalink
Prettier commit
Browse files Browse the repository at this point in the history
  • Loading branch information
amenconi committed Mar 15, 2024
1 parent 2632b74 commit 2099057
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/app/pages/member/pages/transactions/transactions.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,12 @@
<div *ngIf="(isLoadingTransactions$ | async)" class="loading-overlay p-4">
<nz-spin nzSimple [nzSize]="'large'"></nz-spin>
</div>
<p nz-typography nzType="secondary" class="mb-2" *ngIf="(isLoadingTransactions$ | async) === false">
<p
nz-typography
nzType="secondary"
class="mb-2"
*ngIf="(isLoadingTransactions$ | async) === false"
>
{{ ((transactions$ | async)?.length || 0) + ((likelyAllFetched$ | async) === false ? '+' : '')
}} Transactions
</p>
Expand Down Expand Up @@ -151,7 +156,12 @@
<div *ngIf="(isLoadingTransactions$ | async)" class="loading-overlay">
<nz-spin nzSimple [nzSize]="'large'"></nz-spin>
</div>
<p nz-typography nzType="secondary" class="mb-2" *ngIf="(isLoadingTransactions$ | async) === false">
<p
nz-typography
nzType="secondary"
class="mb-2"
*ngIf="(isLoadingTransactions$ | async) === false"
>
{{ ((transactions$ | async)?.length || 0) + ((likelyAllFetched$ | async) === false ? '+' : '')
}} Transactions
</p>
Expand Down

0 comments on commit 2099057

Please sign in to comment.