Add fee rate unit preference & dropdown

This commit is contained in:
Mononaut
2023-06-15 15:15:20 -04:00
parent 408c86963b
commit a45f1fde1c
6 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<div [formGroup]="rateUnitForm" class="text-small text-center">
<select formControlName="rateUnits" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" style="width: 200px;" (change)="changeUnits()">
<option *ngFor="let unit of units" [value]="unit.name">{{ unit.label }}</option>
</select>
</div>