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