@sumaris-net/ngx-components 2.6.23-beta4 → 2.6.23-beta5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/src/app/shared/named-filter/named-filter-selector.component.mjs +4 -3
- package/fesm2015/sumaris-net.ngx-components.mjs +2 -1
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +3 -2
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -21345,12 +21345,13 @@ class NamedFilterSelector extends AppForm {
|
|
|
21345
21345
|
return;
|
|
21346
21346
|
this._entityName = entityName;
|
|
21347
21347
|
// add timeout to allow autocompleteConfig to be set
|
|
21348
|
-
setTimeout(() =>
|
|
21348
|
+
// setTimeout(() =>
|
|
21349
|
+
this.registerAutocompleteField('namedFilter', {
|
|
21349
21350
|
suggestFn: (value, filter) => this.dataService.suggest(value, filter),
|
|
21350
21351
|
attributes: ['name'],
|
|
21351
21352
|
filter: { entityName },
|
|
21352
21353
|
...this.autocompleteConfig
|
|
21353
|
-
})
|
|
21354
|
+
});
|
|
21354
21355
|
}
|
|
21355
21356
|
markForCheck() {
|
|
21356
21357
|
this.cd.markForCheck();
|