Skip to content

Commit

Permalink
FIX: Filters not applied when changed while fetching data due to prev…
Browse files Browse the repository at this point in the history
…ious filter change. (#2570)
  • Loading branch information
ptomask committed Mar 27, 2024
1 parent 09468e6 commit 9b7de88
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -999,11 +999,11 @@ export class FormScreenLifecycle02 implements IFormScreenLifecycle02 {
_readFirstChunkOfRowsScheduled = false;

*readFirstChunkOfRowsWithGate(rootDataView: IDataView) {
if (this._readFirstChunkOfRowsRunning) {
this._readFirstChunkOfRowsScheduled = true;
return;
}
try {
if (this._readFirstChunkOfRowsRunning) {
this._readFirstChunkOfRowsScheduled = true;
return;
}
this._readFirstChunkOfRowsRunning = true;
do {
this._readFirstChunkOfRowsScheduled = false;
Expand Down

0 comments on commit 9b7de88

Please sign in to comment.