2023-06-15 15:15:20 -04:00
|
|
|
<div [formGroup]="rateUnitForm" class="text-small text-center">
|
2023-08-20 22:53:33 +02:00
|
|
|
<select formControlName="rateUnits" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" style="width: 95px;" (change)="changeUnits()">
|
2023-06-15 15:15:20 -04:00
|
|
|
<option *ngFor="let unit of units" [value]="unit.name">{{ unit.label }}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|