ets-fe-ng-sdk 19.0.2 → 19.0.3

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.
@@ -18353,7 +18353,7 @@ class FindItemComponent extends BaseFormGenerator {
18353
18353
  this._loading = signal(false);
18354
18354
  this.loading = computed(() => this._loading() || this.tableHTTPSREFSignal()?.isLoadingResults());
18355
18355
  this.searchForm = computed(() => {
18356
- const form = new FormGroup({}), schema = this._computedFormSchema(), initialQuery = this.initialQuery();
18356
+ const form = new FormGroup({}), schema = this._computedFormSchema(), initialQuery = this.initialQuery() || {};
18357
18357
  schema
18358
18358
  .filter((x) => !x.standalone)
18359
18359
  .forEach((s) => {