mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 14:18:16 +00:00
[Time Conductor] Ignore empty series
...when updating Fixed Position view.
This commit is contained in:
@ -105,11 +105,13 @@ define(
|
|||||||
index
|
index
|
||||||
);
|
);
|
||||||
|
|
||||||
setDisplayedValue(
|
if (index >= 0) {
|
||||||
telemetryObject,
|
setDisplayedValue(
|
||||||
telemetrySeries.getRangeValue(index),
|
telemetryObject,
|
||||||
limit && datum && limit.evaluate(datum)
|
telemetrySeries.getRangeValue(index),
|
||||||
);
|
limit && datum && limit.evaluate(datum)
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update the displayed value for this object
|
// Update the displayed value for this object
|
||||||
|
Reference in New Issue
Block a user