es-grid-template 1.7.31 → 1.7.32
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.
|
@@ -205,7 +205,7 @@ const TableBodyCellEdit = props => {
|
|
|
205
205
|
colSelectIds.forEach(colId => {
|
|
206
206
|
const cellll = row.getVisibleCells().find(c => c.column.id === colId);
|
|
207
207
|
const value = cellll?.getValue();
|
|
208
|
-
rowData.push(value !== undefined ?
|
|
208
|
+
rowData.push(value !== undefined ? value : '');
|
|
209
209
|
});
|
|
210
210
|
dataSelected.push(rowData);
|
|
211
211
|
});
|
|
@@ -211,7 +211,7 @@ const TableBodyCellEdit = props => {
|
|
|
211
211
|
colSelectIds.forEach(colId => {
|
|
212
212
|
const cellll = row.getVisibleCells().find(c => c.column.id === colId);
|
|
213
213
|
const value = cellll?.getValue();
|
|
214
|
-
rowData.push(value !== undefined ?
|
|
214
|
+
rowData.push(value !== undefined ? value : '');
|
|
215
215
|
});
|
|
216
216
|
dataSelected.push(rowData);
|
|
217
217
|
});
|