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.
package/dist/index.js CHANGED
@@ -1291,18 +1291,7 @@ 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 = {
1295
- text: gridCell.value == "Active" ? "Aktif" : "Pasif"
1296
- };
1297
- excelCell.font = {
1298
- color: {
1299
- argb: 'FF0000FF'
1300
- },
1301
- underline: true
1302
- };
1303
- excelCell.alignment = {
1304
- horizontal: 'left'
1305
- };
1294
+ excelCell.value = excelCell.value == "Active" ? "Aktif" : "Pasif";
1306
1295
  }
1307
1296
  }
1308
1297
  }