From add85ebda784a379da6bf96c0738cac670029071 Mon Sep 17 00:00:00 2001 From: unknown <34411636+Dandevmt@users.noreply.github.com> Date: Sat, 6 Jan 2024 16:32:09 -0700 Subject: [PATCH] reduce rows for first 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 8c78855..6e33b57 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 = 2023; - public rowsFirstPage: number = 28; + public rowsFirstPage: number = 14; public rowsPerPage: number = 45; public get fillerRows(): number[] { const rowsToFillPage = this.rowsFirstPage + ((this.pages - 2) * this.rowsPerPage);