ets-fe-ng-sdk 19.0.52 → 19.0.53

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.
@@ -16027,9 +16027,10 @@ class TablePlainComponent extends TableBaseComponent {
16027
16027
  this.data.set(v);
16028
16028
  }
16029
16029
  set _filterFields(v) {
16030
- this.uS.addFormSchemaToForm(v, this.filterForm);
16031
- this.filterFields.set(v);
16032
- for (const scheme of v)
16030
+ const _v = v || [];
16031
+ this.uS.addFormSchemaToForm(_v, this.filterForm);
16032
+ this.filterFields.set(_v);
16033
+ for (const scheme of _v)
16033
16034
  scheme.optionsInitFunc?.subscribe((r) => (this.cellOptions[scheme.field?.toString()] = r));
16034
16035
  this.refreshUI();
16035
16036
  }