mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix, should fill null at end timestamp
This commit is contained in:
parent
afa539368f
commit
ff8b25a50a
@ -230,7 +230,7 @@ function (angular, _, moment, dateMath) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
var endTimestamp = end * 1000;
|
var endTimestamp = end * 1000;
|
||||||
for (var t = baseTimestamp; t < endTimestamp; t += stepMs) {
|
for (var t = baseTimestamp; t <= endTimestamp; t += stepMs) {
|
||||||
dps.push([null, t]);
|
dps.push([null, t]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user