mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +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 (
|
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);
|
||||||
|
Loading…
Reference in New Issue
Block a user