ods-component-lib 1.18.162 → 1.18.163
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -32991,7 +32991,7 @@ var ExportDataGridToExcel = function ExportDataGridToExcel(_ref) {
|
|
|
32991
32991
|
rowCount++;
|
|
32992
32992
|
lastProcessedRowData = gridCell.data;
|
|
32993
32993
|
}
|
|
32994
|
-
if ((gridCell.column.dataType === "datetime" || gridCell.column.dataType === "date") && gridCell.value) {
|
|
32994
|
+
if ((gridCell.column.dataType === "datetime" || gridCell.column.dataType === "date" || gridCell.column.dataField === "CreateDate" || gridCell.column.dataField === "ModifyDate") && gridCell.value) {
|
|
32995
32995
|
var date = moment(gridCell.value);
|
|
32996
32996
|
var formattedDate = date.format("DD.MM.YYYY HH:mm [UTC]Z");
|
|
32997
32997
|
excelCell.value = formattedDate;
|