suppress removal on bounds change while paging

This commit is contained in:
Jamie V 2023-11-20 14:34:32 -08:00
parent 9f309388fd
commit ba688e667a

View File

@ -322,6 +322,10 @@ export default class TelemetryCollection extends EventEmitter {
return;
}
if (this.options.paging) {
return;
}
let startChanged = this.lastBounds.start !== bounds.start;
let endChanged = this.lastBounds.end !== bounds.end;