Format transaction count numbers.

This commit is contained in:
softsimon
2020-04-07 00:44:22 +07:00
parent 655b85026a
commit 7ea20378e9
5 changed files with 7 additions and 7 deletions

View File

@@ -42,7 +42,7 @@
<br>
<h2><ng-template [ngIf]="transactions?.length">{{ transactions?.length || '?' }} of </ng-template>{{ txCount }} transactions</h2>
<h2><ng-template [ngIf]="transactions?.length">{{ (transactions?.length | number) || '?' }} of </ng-template>{{ txCount | number }} transactions</h2>
<app-transactions-list [transactions]="transactions" [showConfirmations]="true" (loadMore)="loadMore()"></app-transactions-list>