diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html index 2ef970801..a3b49cf62 100644 --- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html +++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -35,7 +35,7 @@ @if (selectionModel.items) {
- @for (item of selectionModel.itemsSorted | filter: filterText:'name'; track item; let i = $index) { + @for (item of selectionModel.items | filter: filterText:'name'; track item; let i = $index) { @if (allowSelectNone || item.id) { @@ -45,13 +45,13 @@
} @if (editing) { - @if ((selectionModel.itemsSorted | filter: filterText:'name').length === 0 && createRef !== undefined) { + @if ((selectionModel.items | filter: filterText:'name').length === 0 && createRef !== undefined) { } - @if ((selectionModel.itemsSorted | filter: filterText:'name').length > 0) { + @if ((selectionModel.items | filter: filterText:'name').length > 0) {