Add currency preference to dashboard

This commit is contained in:
Mononaut
2023-01-03 11:56:54 -06:00
parent 2d4e59fabd
commit ce1aa11de0
9 changed files with 168 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
<div [formGroup]="fiatForm" class="text-small text-center">
<select formControlName="fiat" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" style="width: 180px;" (change)="changeFiat()">
<option *ngFor="let currency of currencyList" [value]="currency">{{ currencies[currency].name }}</option>
</select>
</div>