Commit ff8b25a5 by Mitsuhiro Tanda

fix, should fill null at end timestamp

parent afa53936
...@@ -230,7 +230,7 @@ function (angular, _, moment, dateMath) { ...@@ -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]);
} }
......
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