From 10b8212980cfcb5750a224013399e725d231a5de Mon Sep 17 00:00:00 2001 From: unknown <34411636+Dandevmt@users.noreply.github.com> Date: Sat, 25 Jan 2025 09:36:25 -0700 Subject: [PATCH] update rows per page --- .../contributor-yearly-report.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 1497ac7..c17bc40 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,7 +37,7 @@ export class ContributorYearlyReportComponent implements OnInit { public taxYear: number = 2024; - public rowsFirstPage: number = 12; + public rowsFirstPage: number = 11; public rowsPerPage: number = 30; public get fillerRows(): number[] { const rowsToFillPage = this.rowsFirstPage + ((this.pages - 2) * this.rowsPerPage);