2024-08-19 16:29:34 +02:00
|
|
|
<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()">
|
|
|
|
<option value="btc" i18n="shared.btc|BTC">BTC</option>
|
2024-09-23 00:18:59 +08:00
|
|
|
<option value="sats" i18n="shared.sats">sats</option>
|
2024-08-19 16:29:34 +02:00
|
|
|
<option value="fiat" i18n="shared.fiat|Fiat">Fiat</option>
|
|
|
|
</select>
|
|
|
|
</div>
|