Merge branch 'master' into fr-749/bootstrap-icons

This commit is contained in:
Denis Ezhov 2021-11-19 11:06:05 +03:00 committed by GitHub
commit 2353d00fa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ export class CurrencyAutocompleteFieldComponent extends WrappedFormControlSuperc
@Input() label: string; @Input() label: string;
@Input() @coerceBoolean required = false; @Input() @coerceBoolean required = false;
options: Option<string>[] = ['RUB', 'USD', 'EUR', 'UAH', 'KZT', 'BYR'] options: Option<string>[] = ['RUB', 'USD', 'EUR', 'UAH', 'KZT', 'BYN']
.sort() .sort()
.map((currency) => ({ label: currency, value: currency })); .map((currency) => ({ label: currency, value: currency }));