Skip to content

Commit 48149e6

Browse files
committed
[NAE-1751] Autocomplete new filter "include"
- protected
1 parent 03ea30e commit 48149e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/netgrif-components-core/src/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/abstract-enumeration-autocomplete-select-field.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export abstract class AbstractEnumerationAutocompleteSelectFieldComponent implem
9797
* @param value to compare matching options
9898
* @return return matched options
9999
*/
100-
private _filterIndexOf(value: string): Array<EnumerationFieldValue> {
100+
protected _filterIndexOf(value: string): Array<EnumerationFieldValue> {
101101
const filterValue = value?.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, '');
102102

103103
return this.enumerationField.choices.filter(option => option.value.toLowerCase().normalize('NFD')

0 commit comments

Comments
 (0)