From 3858ef229989ae29dd0f721d42cb247e016942ab Mon Sep 17 00:00:00 2001 From: unknown <34411636+Dandevmt@users.noreply.github.com> Date: Sat, 7 Jan 2023 20:56:01 -0700 Subject: [PATCH] Adjust rows per page --- .../contributor-yearly-report.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.ts b/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.ts index 535db5f..667b309 100644 --- a/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.ts +++ b/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.ts @@ -37,8 +37,8 @@ export class ContributorYearlyReportComponent implements OnInit { public taxYear: number = 2022; - public rowsFirstPage: number = 13; - public rowsPerPage: number = 31; + public rowsFirstPage: number = 28; + public rowsPerPage: number = 46; public get fillerRows(): number[] { const rowsToFillPage = this.rowsFirstPage + ((this.pages - 2) * this.rowsPerPage); const rowsNeeded = rowsToFillPage - this.transactions.length;