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