mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix(singestat): fixed missing sparklines, caused by recent changes to time range handling, fixes #2815
This commit is contained in:
parent
f467cb8cd2
commit
9da5ef3cbf
@ -122,8 +122,8 @@ function (angular, app, _, $) {
|
|||||||
xaxis: {
|
xaxis: {
|
||||||
show: false,
|
show: false,
|
||||||
mode: "time",
|
mode: "time",
|
||||||
min: scope.range.from.getTime(),
|
min: scope.range.from.valueOf(),
|
||||||
max: scope.range.to.getTime(),
|
max: scope.range.to.valueOf(),
|
||||||
},
|
},
|
||||||
grid: { hoverable: false, show: false },
|
grid: { hoverable: false, show: false },
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user