Change tooltip text "ago" -> "earlier"

This commit is contained in:
natsoni
2024-03-17 22:23:46 +09:00
parent 2dc6f6ff5a
commit a04d685f1a
3 changed files with 12 additions and 14 deletions

View File

@@ -8,10 +8,8 @@
}}
</span>
<ng-template #noblockconversion>
<ng-container *ngIf="!forceBlockConversion; else zeroValue">
<span class="fiat">{{ addPlus && satoshis >= 0 ? '+' : '' }}{{ (conversions[currency] > -1 ? conversions[currency] : 0) * satoshis / 100000000 | fiatCurrency : digitsInfo : currency }}
</span>
</ng-container>
<span class="fiat" *ngIf="!forceBlockConversion; else zeroValue">{{ addPlus && satoshis >= 0 ? '+' : '' }}{{ (conversions[currency] > -1 ? conversions[currency] : 0) * satoshis / 100000000 | fiatCurrency : digitsInfo : currency }}
</span>
</ng-template>
<ng-template #zeroValue>
<span class="fiat">{{ 0 | fiatCurrency : digitsInfo : currency }}</span>