impaktapps-ui-builder 0.0.101-alpha.56 → 0.0.101-alpha.57

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.56",
3
+ "version": "0.0.101-alpha.57",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -159,7 +159,7 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
159
159
 
160
160
  const pathArrayAll = path.split(".");
161
161
 
162
- const breadPathArray = pathArrayAll.reduce((elem, i)=>{
162
+ const breadPathArray = pathArrayAll.reduce((ongoingArray, elem, i)=>{
163
163
  const currObj = _.get(currentConfig, elem)
164
164
  console.log("currObj>>",currObj, "index>>", i)
165
165
  },currentConfig)