Skip to content

Commit

Permalink
Fixed parameters in pageChanged call to the correct values (#2081)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewbrazzatti authored Apr 14, 2024
1 parent 202c4b9 commit b2dc282
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -680,8 +680,8 @@ export class DashboardComponent extends BaseComponent {
this.records[step] = planTable;
} else if (this.dashboardTypeSelected == 'workspace') {
let stagedRecords = await this.recordService.getRecords('', '', event.page, this.packageType, this.getSortString(sortDetails));
let planTable: PlanTable = this.evaluatePlanTableColumns({}, {}, {}, this.packageType, stagedRecords);
this.records[this.packageType] = planTable;
let planTable: PlanTable = this.evaluatePlanTableColumns({}, {}, {}, step, stagedRecords);
this.records[step] = planTable;
} else if (this.dashboardTypeSelected == 'consolidated') {
let packageType = '';
let stepName = '';
Expand Down

0 comments on commit b2dc282

Please sign in to comment.