From 7cb6b63eb9596da4ee84369b220c3e680c607032 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Wed, 19 Apr 2023 18:23:07 +0200 Subject: [PATCH] Smaller sponsoring page size --- src/components/donations/DonationsOverview.svelte | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/donations/DonationsOverview.svelte b/src/components/donations/DonationsOverview.svelte index 51fe5549..e077cfd2 100644 --- a/src/components/donations/DonationsOverview.svelte +++ b/src/components/donations/DonationsOverview.svelte @@ -23,7 +23,10 @@ import DonationStatus from "./DonationStatus.svelte"; import DonationTableAction from "./DonationTableAction.svelte"; import DeleteDonationModal from "./DeleteDonationModal.svelte"; - import { donationDonorFilter, donationRunnerFilter } from "../shared/tablefilters"; + import { + donationDonorFilter, + donationRunnerFilter, + } from "../shared/tablefilters"; $: searchvalue = ""; $: active_deletes = []; $: active_edits = []; @@ -173,7 +176,7 @@ while (page >= 0) { const donations = await DonationService.donationControllerGetAll( page, - 500 + 100 ); if (donations.length == 0) { page = -2;