mempool/frontend/src/app/components/rate-unit-selector/rate-unit-selector.component.html
2023-07-11 10:00:40 +09:00

6 lines
345 B
HTML

<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>