ods-component-lib 1.17.154 → 1.17.157

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 CHANGED
@@ -1291,7 +1291,9 @@ function grid(props, dataGridRef) {
1291
1291
  excelCell = _ref.excelCell;
1292
1292
  if (gridCell.rowType === 'data') {
1293
1293
  if (gridCell.column.dataField === 'IsActive') {
1294
- excelCell.value = gridCell.value == "TRUE" ? "Aktif" : "Pasif";
1294
+ console.log("gridCell.value", gridCell.value);
1295
+ console.log(" excelCell.value", excelCell.value);
1296
+ excelCell.value = gridCell.value === 'true' ? "Aktif" : "Pasif";
1295
1297
  }
1296
1298
  }
1297
1299
  }