TSK-1484: Fixed bug int page size is overflow and all workbaskets are requested (#1367)
This commit is contained in:
parent
f76b0c4522
commit
e8f62bde7c
|
@ -169,7 +169,8 @@ export class WorkbasketListComponent implements OnInit, OnDestroy {
|
||||||
this.performRequest();
|
this.performRequest();
|
||||||
}
|
}
|
||||||
|
|
||||||
performRequest(): void {
|
performRequest() {
|
||||||
|
TaskanaQueryParameters.pageSize = this.cards;
|
||||||
this.store
|
this.store
|
||||||
.dispatch(
|
.dispatch(
|
||||||
new GetWorkbasketsSummary(
|
new GetWorkbasketsSummary(
|
||||||
|
@ -190,7 +191,6 @@ export class WorkbasketListComponent implements OnInit, OnDestroy {
|
||||||
.subscribe(() => {
|
.subscribe(() => {
|
||||||
this.requestInProgressService.setRequestInProgress(false);
|
this.requestInProgressService.setRequestInProgress(false);
|
||||||
});
|
});
|
||||||
TaskanaQueryParameters.pageSize = this.cards;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnDestroy() {
|
ngOnDestroy() {
|
||||||
|
|
Loading…
Reference in New Issue