diff --git a/frontend/src/Editor/Components/Table/columns/index.jsx b/frontend/src/Editor/Components/Table/columns/index.jsx index 85f4fcd067..4abcfef68b 100644 --- a/frontend/src/Editor/Components/Table/columns/index.jsx +++ b/frontend/src/Editor/Components/Table/columns/index.jsx @@ -69,9 +69,8 @@ export default function generateColumnsData({ key: column.key, Cell: function (cell) { const rowChangeSet = changeSet ? changeSet[cell.row.index] : null; - let cellValue = rowChangeSet ? rowChangeSet[column.name] || cell.value : cell.value; + let cellValue = rowChangeSet ? rowChangeSet[column.name] ?? cell.value : cell.value; const rowData = tableData[cell.row.index]; - if ( cell.row.index === 0 && variablesExposedForPreview &&