Browse Source

refactoring

pull/3429/head
José Marinho 1 year ago
parent
commit
62a31719b3
  1. 6
      libs/ui/src/lib/currency-selector/currency-selector.component.html

6
libs/ui/src/lib/currency-selector/currency-selector.component.html

@ -10,9 +10,9 @@
#currencyAutocomplete="matAutocomplete" #currencyAutocomplete="matAutocomplete"
(optionSelected)="onUpdateCurrency($event)" (optionSelected)="onUpdateCurrency($event)"
> >
@for (currencyItem of filteredCurrencies; track currencyItem) { @for (currency of filteredCurrencies; track currency) {
<mat-option class="line-height-1" [value]="currencyItem"> <mat-option class="line-height-1" [value]="currency">
{{ currencyItem }} {{ currency }}
</mat-option> </mat-option>
} }
</mat-autocomplete> </mat-autocomplete>

Loading…
Cancel
Save