amount selector sat -> sats

This commit is contained in:
softsimon 2024-09-23 00:18:59 +08:00
parent 04605e10a5
commit 72a5f4a521
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7

View File

@ -1,7 +1,7 @@
<div [formGroup]="amountForm" class="text-small text-center"> <div [formGroup]="amountForm" class="text-small text-center">
<select formControlName="mode" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" style="width: 70px;" (change)="changeMode()"> <select formControlName="mode" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" style="width: 70px;" (change)="changeMode()">
<option value="btc" i18n="shared.btc|BTC">BTC</option> <option value="btc" i18n="shared.btc|BTC">BTC</option>
<option value="sats" i18n="shared.sat|sat">sat</option> <option value="sats" i18n="shared.sats">sats</option>
<option value="fiat" i18n="shared.fiat|Fiat">Fiat</option> <option value="fiat" i18n="shared.fiat|Fiat">Fiat</option>
</select> </select>
</div> </div>