mirror of
https://github.com/nasa/openmct.git
synced 2025-06-11 20:01:41 +00:00
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user