Skip to content

Commit

Permalink
CB-5380 fix: grid loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Wroud committed Jul 15, 2024
1 parent d0f82d9 commit 416cb54
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ export abstract class DatabaseDataSource<TOptions, TResult extends IDatabaseData
}

private async tryExecuteOperation<T>(type: DatabaseDataSourceOperation, operation: () => Promise<T>): Promise<T | null> {
if (this.activeOperation && type !== DatabaseDataSourceOperation.Request) {
if (this.activeOperation && type === DatabaseDataSourceOperation.Request) {
await this.activeOperation;
}

Expand Down

0 comments on commit 416cb54

Please sign in to comment.