ywana-core8 0.0.339 → 0.0.340

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.339",
3
+ "version": "0.0.340",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
package/src/html/table.js CHANGED
@@ -215,7 +215,7 @@ const StringCellViewer = ({ id, value, format, options }) => {
215
215
  case FORMATS.DATE:
216
216
  let fecha = new Date(text)
217
217
  console.log("fecha1", fecha)
218
- fecha.setMinutes(fecha.getMinutes() + fecha.getTimezoneOffset())
218
+ fecha.setMinutes(fecha.getMinutes() + fecha.getTimezoneOffset() + 1)
219
219
  console.log("fecha2", fecha)
220
220
  text = fecha.toLocaleString( locale, { year: 'numeric', month: 'numeric', day: 'numeric'});
221
221
  break;