{{ filteredOptions().length === 0 ? 'No results found for ' + searchString() : '' }}
@if (filteredOptions().length === 0) {
No results found
}
@for (option of filteredOptions(); track option.value) {
{{ option.label }}
}