2022-02-16 17:32:12 +04:00
|
|
|
<ng-container *ngIf="(circulatingAmount$ | async) as circulating">
|
2022-02-21 22:33:03 +04:00
|
|
|
<ng-template [ngIf]="circulating.amount === -1" [ngIfElse]="default" i18n="shared.confidential">Confidential</ng-template>
|
|
|
|
<ng-template #default>
|
|
|
|
<span class="d-inline-block d-md-none">{{ circulating.amount | amountShortener }}</span>
|
|
|
|
<span class="d-none d-md-inline-block">{{ circulating.amount | number: '1.2-2' }}</span> <span class="ticker">{{ circulating.ticker }}</span></ng-template>
|
2022-02-13 00:46:42 +04:00
|
|
|
</ng-container>
|