impaktapps-ui-builder 0.0.302 → 0.0.303
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.
|
@@ -8291,7 +8291,12 @@ var service = (funcParams) => {
|
|
|
8291
8291
|
eventGroups
|
|
8292
8292
|
};
|
|
8293
8293
|
funcParams.store.setSchema(
|
|
8294
|
-
|
|
8294
|
+
(pre) => {
|
|
8295
|
+
return {
|
|
8296
|
+
...funcParams.schema,
|
|
8297
|
+
properties: { ...funcParams.schema.properties, ...pre.properties }
|
|
8298
|
+
};
|
|
8299
|
+
}
|
|
8295
8300
|
);
|
|
8296
8301
|
funcParams.uiSchema.elements.push(notifyUiSchema);
|
|
8297
8302
|
funcParams.store.setUiSchema(funcParams.uiSchema);
|