Skip to content

Commit

Permalink
fix: prioritize local state for flags
Browse files Browse the repository at this point in the history
  • Loading branch information
iobuhov committed Feb 13, 2025
1 parent 9f2af4c commit 9fa6b05
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ export class DatasourceController implements ReactiveController, QueryController
}

get isRefreshing(): boolean {
return this.isDSLoading && this.refreshing;
return this.refreshing;
}

get isLoadingMore(): boolean {
return this.isDSLoading && this.loadingMore;
return this.loadingMore;
}

get limit(): number {
Expand Down

0 comments on commit 9fa6b05

Please sign in to comment.