Commit a3748d4b by Torkel Ödegaard Committed by Mitsuhiro Tanda

fix(singestat): fixed missing sparklines, caused by recent changes to time range…

fix(singestat): fixed missing sparklines, caused by recent changes to time range handling, fixes #2815
parent 9ae6ac25
...@@ -122,8 +122,8 @@ function (angular, app, _, $) { ...@@ -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 },
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment