@sumaris-net/ngx-components 2.6.23-beta2 → 2.6.23-beta3

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.
@@ -21341,6 +21341,8 @@ class NamedFilterSelector extends AppForm {
21341
21341
  this.registerSubscription(this.form.controls.namedFilter.valueChanges.pipe(debounceTime(100), distinctUntilChanged()).subscribe((value) => this.onFilterChanges(value)));
21342
21342
  }
21343
21343
  setEntityName(entityName) {
21344
+ if (!entityName || this._entityName === entityName)
21345
+ return;
21344
21346
  this._entityName = entityName;
21345
21347
  this.registerAutocompleteField('namedFilter', {
21346
21348
  suggestFn: (value, filter) => this.dataService.suggest(value, filter),