nuxeo-development-framework 1.6.7 → 1.6.8

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.
@@ -13676,7 +13676,7 @@
13676
13676
  // our pickeer generate date with gmt and this makes issues when saving to server and using hours to using this function to avoid this
13677
13677
  DateHelperService.prototype.convertDateToIso = function (date) {
13678
13678
  var tod = new Date();
13679
- return date.split('T')[0] + 'T' + tod.getHours() + ':' + tod.getMinutes() + ':' + '00Z';
13679
+ return date.split('T')[0] + 'T00:' + tod.getMinutes() + ':' + '00Z';
13680
13680
  };
13681
13681
  return DateHelperService;
13682
13682
  }());