mirror of
https://github.com/nasa/openmct.git
synced 2025-06-01 23:20:50 +00:00
use correct duration for historical states
This commit is contained in:
parent
433dee0314
commit
cc5bfda730
@ -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);
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user