mirror of
https://github.com/nasa/openmct.git
synced 2025-06-19 23:53:49 +00:00
Merge pull request #2097 from nasa/matching-historical-states
use correct duration for historical states
This commit is contained in:
@ -72,7 +72,7 @@ define([
|
|||||||
var data = [];
|
var data = [];
|
||||||
while (start <= end && data.length < 5000) {
|
while (start <= end && data.length < 5000) {
|
||||||
data.push(pointForTimestamp(start, duration, domainObject.name));
|
data.push(pointForTimestamp(start, duration, domainObject.name));
|
||||||
start += 5000;
|
start += duration;
|
||||||
}
|
}
|
||||||
return Promise.resolve(data);
|
return Promise.resolve(data);
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user