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.
- package/fesm2022/ets-fe-ng-sdk.mjs +1 -1
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/lib/Services/utility.service.d.ts +2 -2
- package/lib/Shared/components/index-comp-layout/index-comp-layout.component.d.ts +1 -1
- package/lib/Shared/components/info-dialog/info-dialog.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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) => {
|