mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
Fix datepicker timezone issues.
This commit is contained in:
parent
97ad5d3d1b
commit
ff5eeb49fa
|
@ -244,14 +244,7 @@ Prometheus.Graph.prototype.getEndDate = function() {
|
|||
if (!self.endDate || !self.endDate.val()) {
|
||||
return null;
|
||||
}
|
||||
//
|
||||
// This is returning the time set according to the system clock,
|
||||
// but the datetimepicker is converting this to UTC, which is
|
||||
// causing the time to decrease instead of increase. It should
|
||||
// be increasing by 30min, but UTC is one hour behind berlin time,
|
||||
// so incrementing UTC by 30min e.g. decrements the time the user sees by 30min.
|
||||
//
|
||||
return new Date(self.endDate.val()).getTime();
|
||||
return self.endDate.data('datetimepicker').getDate().getTime();
|
||||
};
|
||||
|
||||
Prometheus.Graph.prototype.getOrSetEndDate = function() {
|
||||
|
|
Loading…
Reference in a new issue