impaktapps-ui-builder 0.0.393-alpha.2 → 0.0.393-alpha.4

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.
@@ -8613,7 +8613,12 @@ var service = (funcParams) => {
8613
8613
  eventGroups
8614
8614
  };
8615
8615
  funcParams.store.setSchema(
8616
- funcParams.schema
8616
+ (pre) => {
8617
+ return {
8618
+ ...funcParams.schema,
8619
+ properties: { ...funcParams.schema.properties, ...pre.properties }
8620
+ };
8621
+ }
8617
8622
  );
8618
8623
  funcParams.uiSchema.elements.push(notifyUiSchema);
8619
8624
  funcParams.store.setUiSchema(funcParams.uiSchema);