From 2e0ec2b51d94f7c9f0ecae61ae30381d899f9665 Mon Sep 17 00:00:00 2001 From: unknown <34411636+Dandevmt@users.noreply.github.com> Date: Sat, 6 Jan 2024 16:47:11 -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 1896722..7e851b1 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 = 2023; - public rowsFirstPage: number = 12; - public rowsPerPage: number = 30; + public rowsFirstPage: number = 13; + public rowsPerPage: number = 31; public get fillerRows(): number[] { const rowsToFillPage = this.rowsFirstPage + ((this.pages - 2) * this.rowsPerPage); const rowsNeeded = rowsToFillPage - this.transactions.length;