ods-component-lib 1.17.149 → 1.17.152

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,18 +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 = {
1291
- text: gridCell.value == "Active" ? "Aktif" : "Pasif"
1292
- };
1293
- excelCell.font = {
1294
- color: {
1295
- argb: 'FF0000FF'
1296
- },
1297
- underline: true
1298
- };
1299
- excelCell.alignment = {
1300
- horizontal: 'left'
1301
- };
1290
+ excelCell.value = excelCell.value == "Active" ? "Aktif" : "Pasif";
1302
1291
  }
1303
1292
  }
1304
1293
  }