We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d37ff60 commit b6c2f11Copy full SHA for b6c2f11
src/utils/data-manager.js
@@ -64,10 +64,7 @@ export default class DataManager {
64
}
65
66
this.data = data.map((row, index) => {
67
- const prevTableData =
68
- prevDataObject[row.id] ||
69
- prevDataObject[row.tableData && row.tableData.id] ||
70
- {};
+ const prevTableData = prevDataObject[row.id] || {};
71
const tableData = { id: index, ...prevTableData, ...row.tableData };
72
if (tableData.checked) {
73
this.selectedCount++;
0 commit comments