@apexcura/ui-components 0.0.12-Beta7 → 0.0.12-Beta9
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/dist/index.js +3 -5
- package/dist/index.mjs +3 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -408,11 +408,9 @@ var AddMoreTable = (props) => {
|
|
|
408
408
|
rowElements[eachRow.label] = renderInputElement(eachRow);
|
|
409
409
|
}
|
|
410
410
|
const variableData = eachRow.variable_data && Array.isArray(eachRow.variable_data) ? eachRow.variable_data.reduce((acc, curr) => {
|
|
411
|
-
|
|
412
|
-
console.
|
|
413
|
-
|
|
414
|
-
}
|
|
415
|
-
acc[curr.label] = renderInputElement(curr);
|
|
411
|
+
Object.keys(curr).forEach((key) => {
|
|
412
|
+
console.log(key);
|
|
413
|
+
});
|
|
416
414
|
return acc;
|
|
417
415
|
}, {}) : {};
|
|
418
416
|
return {
|
package/dist/index.mjs
CHANGED
|
@@ -361,11 +361,9 @@ var AddMoreTable = (props) => {
|
|
|
361
361
|
rowElements[eachRow.label] = renderInputElement(eachRow);
|
|
362
362
|
}
|
|
363
363
|
const variableData = eachRow.variable_data && Array.isArray(eachRow.variable_data) ? eachRow.variable_data.reduce((acc, curr) => {
|
|
364
|
-
|
|
365
|
-
console.
|
|
366
|
-
|
|
367
|
-
}
|
|
368
|
-
acc[curr.label] = renderInputElement(curr);
|
|
364
|
+
Object.keys(curr).forEach((key) => {
|
|
365
|
+
console.log(key);
|
|
366
|
+
});
|
|
369
367
|
return acc;
|
|
370
368
|
}, {}) : {};
|
|
371
369
|
return {
|