mirror of
https://github.com/nasa/openmct.git
synced 2025-06-02 23:50:49 +00:00
This commit is contained in:
parent
db5cb2517f
commit
fff3ce0acf
@ -185,8 +185,8 @@ export class TelemetryCollection extends EventEmitter {
|
|||||||
|
|
||||||
for (let datum of data) {
|
for (let datum of data) {
|
||||||
parsedValue = this.parseTime(datum);
|
parsedValue = this.parseTime(datum);
|
||||||
beforeStartOfBounds = parsedValue < this.lastBounds.start;
|
beforeStartOfBounds = parsedValue <= this.lastBounds.start;
|
||||||
afterEndOfBounds = parsedValue > this.lastBounds.end;
|
afterEndOfBounds = parsedValue >= this.lastBounds.end;
|
||||||
|
|
||||||
if (!afterEndOfBounds && !beforeStartOfBounds) {
|
if (!afterEndOfBounds && !beforeStartOfBounds) {
|
||||||
let isDuplicate = false;
|
let isDuplicate = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user