impaktapps-ui-builder 0.0.101-alpha.64 → 0.0.101-alpha.66

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.101-alpha.64",
3
+ "version": "0.0.101-alpha.66",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -29,6 +29,7 @@ export default (
29
29
  const formdata = await this.getFormData();
30
30
  store.setFormdata(formdata);
31
31
  const schema = await this.getSchema();
32
+ console.log("SettingSchema>>",schema)
32
33
  store.setSchema(schema);
33
34
  this.refreshPage(formdata.Handler, store);
34
35
  },
@@ -160,7 +161,7 @@ export default (
160
161
  const data = _.get(config, e);
161
162
  pathArray.push({
162
163
  label: data?.name || data?.eventType || "NewComponent",
163
- path: `/ComponentEvents?path=${e}&id=${id}`,
164
+ path: data?.eventType ? `/ComponentEvents?path=${e}&id=${id}` : `/Component?path=${e}&id=${id}`,
164
165
  });
165
166
  });
166
167
  }