mirror of
https://github.com/nasa/openmct.git
synced 2024-12-18 20:57:53 +00:00
allow before start bounds items while paging
This commit is contained in:
parent
ba688e667a
commit
e10e836796
@ -226,7 +226,9 @@ export default class TelemetryCollection extends EventEmitter {
|
||||
|
||||
if (
|
||||
!afterEndOfBounds &&
|
||||
(!beforeStartOfBounds || (this.isStrategyLatest && this.openmct.telemetry.greedyLAD()))
|
||||
(!beforeStartOfBounds ||
|
||||
(beforeStartOfBounds && this.options.paging) ||
|
||||
(this.isStrategyLatest && this.openmct.telemetry.greedyLAD()))
|
||||
) {
|
||||
let isDuplicate = false;
|
||||
let startIndex = this._sortedIndex(datum);
|
||||
|
Loading…
Reference in New Issue
Block a user