ods-component-lib 1.14.3 → 1.14.5

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.
@@ -1229,7 +1229,11 @@ function grid(props) {
1229
1229
  }
1230
1230
  };
1231
1231
  var customizeDatetimeText = function customizeDatetimeText(cellInfo) {
1232
- debugger;
1232
+ var windowLanguage = "";
1233
+ if (typeof window.Intl === 'object') {
1234
+ windowLanguage = window.navigator.language;
1235
+ console.log(windowLanguage);
1236
+ }
1233
1237
  var dateTimeValue = cellInfo.value;
1234
1238
  if (dateTimeValue) {
1235
1239
  var formattedDate = new Date(dateTimeValue).toISOString();