Compare commits

...

2 Commits

Author SHA1 Message Date
Shefali Joshi
c81f185be9 Merge branch 'master' into telemetry-table-start-end-inclusive 2022-04-22 18:46:21 -07:00
Nikhil Mandlik
2742b9311e [Telemetry Collection] Telemetry table excluding start and end bound values #5095 2022-04-21 10:16:34 -07:00

View File

@@ -185,8 +185,8 @@ export class TelemetryCollection extends EventEmitter {
for (let datum of data) {
parsedValue = this.parseTime(datum);
beforeStartOfBounds = parsedValue < this.lastBounds.start;
afterEndOfBounds = parsedValue > this.lastBounds.end;
beforeStartOfBounds = parsedValue <= this.lastBounds.start;
afterEndOfBounds = parsedValue >= this.lastBounds.end;
if (!afterEndOfBounds && !beforeStartOfBounds) {
let isDuplicate = false;