ods-component-lib 1.17.152 → 1.17.154

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.
@@ -1287,7 +1287,7 @@ function grid(props, dataGridRef) {
1287
1287
  excelCell = _ref.excelCell;
1288
1288
  if (gridCell.rowType === 'data') {
1289
1289
  if (gridCell.column.dataField === 'IsActive') {
1290
- excelCell.value = excelCell.value == "Active" ? "Aktif" : "Pasif";
1290
+ excelCell.value = gridCell.value == "TRUE" ? "Aktif" : "Pasif";
1291
1291
  }
1292
1292
  }
1293
1293
  }