Skip to content

Commit f2ca1da

Browse files
committed
[NAE-1766] Options on multichoice autocomplete do not refresh in a specific situation
- fix
1 parent 3d732dc commit f2ca1da

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export abstract class AbstractMultichoiceAutocompleteFieldComponentComponent imp
2525

2626
ngOnInit() {
2727
this.formControlRef.valueChanges.subscribe(newVal => {
28-
startWith('')
2928
this.filteredOptions = of(this._filter(newVal ?? '').filter((option) => !this.multichoiceField.value?.includes(option.key)));
3029
})
3130
}

0 commit comments

Comments
 (0)