@if(label) {
{{label}}
@if(descriptionTooltip) {
}
}
@for (option of filteredOptions | async; track option) {
{{ option.label }}
@if (option.linkText) {
}
@if (multiSelectMode && selectedOptions.size > 0) {
}
}
@if (control.hasError('required')) {
{{label ? label: 'Este campo'}} es requerido
}
@if (control.hasError('maxlength')) {
El máximo permitido son {{maxlength}} caracteres
}
@if (control.hasError('minlength')) {
El mínimo permitido son {{minlength}} caracteres
}
@if (control.hasError('errorCommons')) {
{{messageErrorCustom}}
}