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