Fix for ACA upstream (#11640)

This commit is contained in:
Dominik Iwanek
2026-02-11 13:23:16 +01:00
committed by GitHub
parent 4df5b9282c
commit faa22f2fde
@@ -59,7 +59,7 @@ export class SearchHeaderQueryBuilderService extends BaseQueryBuilderService {
setupCurrentPagination(maxItems: number, skipCount: number) {
if (!this.paging || (this.paging && this.paging.maxItems !== maxItems) || this.paging.skipCount !== skipCount) {
this.paging = { maxItems, skipCount };
this.execute();
this.execute(false);
}
}