2023-01-03 11:56:54 -06:00
|
|
|
<div [formGroup]="fiatForm" class="text-small text-center">
|
2023-08-20 22:54:12 +02:00
|
|
|
<select formControlName="fiat" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" style="width: 85px;" (change)="changeFiat()">
|
2023-08-20 22:53:33 +02:00
|
|
|
<option *ngFor="let currency of currencies" [value]="currency[1].code">{{ currency[1].code }}</option>
|
2023-01-03 11:56:54 -06:00
|
|
|
</select>
|
|
|
|
</div>
|