From 864b838b69e8ee904a859f8714834fa4b1fbf0e3 Mon Sep 17 00:00:00 2001 From: unknown <34411636+Dandevmt@users.noreply.github.com> Date: Sat, 7 Jan 2023 20:58:36 -0700 Subject: [PATCH] Adjust 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 667b309..21cad48 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 @@ -38,7 +38,7 @@ export class ContributorYearlyReportComponent implements OnInit { public rowsFirstPage: number = 28; - public rowsPerPage: number = 46; + public rowsPerPage: number = 45; public get fillerRows(): number[] { const rowsToFillPage = this.rowsFirstPage + ((this.pages - 2) * this.rowsPerPage); const rowsNeeded = rowsToFillPage - this.transactions.length;