ods-component-lib 1.17.158 → 1.17.159

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