impaktapps-ui-builder 1.0.80 → 1.0.81

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.
@@ -10293,6 +10293,15 @@ var service = (funcParams) => {
10293
10293
  eventGroups,
10294
10294
  formDataHolder
10295
10295
  };
10296
+ funcParams.store.setSchema(
10297
+ (pre) => {
10298
+ return {
10299
+ ...schema2,
10300
+ ...pre,
10301
+ properties: { ...schema2.properties, ...pre.properties }
10302
+ };
10303
+ }
10304
+ );
10296
10305
  await executeRefreshHandler({
10297
10306
  config: {},
10298
10307
  componentName: "",
@@ -10304,15 +10313,6 @@ var service = (funcParams) => {
10304
10313
  eventGroups,
10305
10314
  formDataHolder: {}
10306
10315
  });
10307
- funcParams.store.setSchema(
10308
- (pre) => {
10309
- return {
10310
- ...schema2,
10311
- ...pre,
10312
- properties: { ...schema2.properties, ...pre.properties }
10313
- };
10314
- }
10315
- );
10316
10316
  uiSchema.elements.push(notifyUiSchema);
10317
10317
  funcParams.store.setUiSchema(uiSchema);
10318
10318
  },