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"
(optionSelected)="onUpdateCurrency($event)"
>
@for (currencyItem of filteredCurrencies; track currencyItem) {
<mat-option class="line-height-1" [value]="currencyItem">
{{ currencyItem }}
@for (currency of filteredCurrencies; track currency) {
<mat-option class="line-height-1" [value]="currency">
{{ currency }}
</mat-option>
}
</mat-autocomplete>

Loading…
Cancel
Save