allow before start bounds items while paging

This commit is contained in:
Jamie V 2023-11-20 14:42:25 -08:00
parent ba688e667a
commit e10e836796

View File

@ -226,7 +226,9 @@ export default class TelemetryCollection extends EventEmitter {
if ( if (
!afterEndOfBounds && !afterEndOfBounds &&
(!beforeStartOfBounds || (this.isStrategyLatest && this.openmct.telemetry.greedyLAD())) (!beforeStartOfBounds ||
(beforeStartOfBounds && this.options.paging) ||
(this.isStrategyLatest && this.openmct.telemetry.greedyLAD()))
) { ) {
let isDuplicate = false; let isDuplicate = false;
let startIndex = this._sortedIndex(datum); let startIndex = this._sortedIndex(datum);