@esfaenza/es-table 11.2.114 → 11.2.115

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.
@@ -881,7 +881,7 @@
881
881
  case 'date':
882
882
  date = this.dateExts.getDateConvertion(val);
883
883
  if (date) {
884
- correctedDate = dayjs(date).add(dayjs().utcOffset(), 'minute');
884
+ correctedDate = date.add(date.utcOffset(), 'minute');
885
885
  cell.value = correctedDate.toDate();
886
886
  cell.numFmt = val.length > 10 ? 'dd/mm/yyyy h:m:s' : '';
887
887
  }