@apexcura/ui-components 0.0.11-Beta2 → 0.0.11-Beta3
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 +1 -4
- package/dist/index.mjs +1 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -369,10 +369,7 @@ var AddMoreTable = (props) => {
|
|
|
369
369
|
key: eachHeadEl.id
|
|
370
370
|
})) : [];
|
|
371
371
|
const dataSource = tbody && tbody.length > 0 ? tbody.map((eachRow, index) => {
|
|
372
|
-
const variableData = eachRow.variable_data.reduce
|
|
373
|
-
acc[curr.label] = curr.element;
|
|
374
|
-
return acc;
|
|
375
|
-
}, {});
|
|
372
|
+
const variableData = eachRow.variable_data.reduce;
|
|
376
373
|
console.log("eachRow---------", eachRow);
|
|
377
374
|
console.log("VariableData", { ...variableData });
|
|
378
375
|
return {
|
package/dist/index.mjs
CHANGED
|
@@ -322,10 +322,7 @@ var AddMoreTable = (props) => {
|
|
|
322
322
|
key: eachHeadEl.id
|
|
323
323
|
})) : [];
|
|
324
324
|
const dataSource = tbody && tbody.length > 0 ? tbody.map((eachRow, index) => {
|
|
325
|
-
const variableData = eachRow.variable_data.reduce
|
|
326
|
-
acc[curr.label] = curr.element;
|
|
327
|
-
return acc;
|
|
328
|
-
}, {});
|
|
325
|
+
const variableData = eachRow.variable_data.reduce;
|
|
329
326
|
console.log("eachRow---------", eachRow);
|
|
330
327
|
console.log("VariableData", { ...variableData });
|
|
331
328
|
return {
|