@apexcura/ui-components 0.0.11-Beta56 → 0.0.11-Beta57
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 -3
- package/dist/index.mjs +1 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -392,7 +392,6 @@ var AddMoreTable = (props) => {
|
|
|
392
392
|
}
|
|
393
393
|
]
|
|
394
394
|
};
|
|
395
|
-
console.log(rows);
|
|
396
395
|
setRows((prevData) => [...prevData, newRow]);
|
|
397
396
|
};
|
|
398
397
|
const onHandleDelete = (index) => {
|
|
@@ -453,8 +452,7 @@ var AddMoreTable = (props) => {
|
|
|
453
452
|
return null;
|
|
454
453
|
}
|
|
455
454
|
};
|
|
456
|
-
const dataSource = rows.
|
|
457
|
-
console.log("------rows", rows);
|
|
455
|
+
const dataSource = rows.map((eachRow, index) => {
|
|
458
456
|
const rowData = [];
|
|
459
457
|
const mainRow = {
|
|
460
458
|
key: index.toString(),
|
package/dist/index.mjs
CHANGED
|
@@ -345,7 +345,6 @@ var AddMoreTable = (props) => {
|
|
|
345
345
|
}
|
|
346
346
|
]
|
|
347
347
|
};
|
|
348
|
-
console.log(rows);
|
|
349
348
|
setRows((prevData) => [...prevData, newRow]);
|
|
350
349
|
};
|
|
351
350
|
const onHandleDelete = (index) => {
|
|
@@ -406,8 +405,7 @@ var AddMoreTable = (props) => {
|
|
|
406
405
|
return null;
|
|
407
406
|
}
|
|
408
407
|
};
|
|
409
|
-
const dataSource = rows.
|
|
410
|
-
console.log("------rows", rows);
|
|
408
|
+
const dataSource = rows.map((eachRow, index) => {
|
|
411
409
|
const rowData = [];
|
|
412
410
|
const mainRow = {
|
|
413
411
|
key: index.toString(),
|