mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 02:23:31 -06:00
fix(dashboard timepicker): fixed issue with time picker and UTC when reading time from url, fixes #5078
This commit is contained in:
parent
8d2f350ad1
commit
cd80884b76
@ -50,7 +50,7 @@ define([
|
||||
|
||||
if (!isNaN(value)) {
|
||||
var epoch = parseInt(value);
|
||||
return moment(epoch);
|
||||
return moment.utc(epoch);
|
||||
}
|
||||
|
||||
return null;
|
||||
|
Loading…
Reference in New Issue
Block a user