From a883f2467a1e5ea08f1ec8759b1cfa8f11721b7d Mon Sep 17 00:00:00 2001 From: summersamara Date: Tue, 3 Oct 2023 18:03:41 +0200 Subject: [PATCH] issue#9: Increase the limit of the displayed events on home page to the max (99) --- js/src/components/Local/UpcomingEvents.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/src/components/Local/UpcomingEvents.vue b/js/src/components/Local/UpcomingEvents.vue index d319a300c..20ed9c7b9 100755 --- a/js/src/components/Local/UpcomingEvents.vue +++ b/js/src/components/Local/UpcomingEvents.vue @@ -31,7 +31,7 @@ :event="event" :key="event.uuid" /> - {{ t("View more events") }} - + --> @@ -71,6 +71,7 @@ const { result: resultEvents, loading: loadingEvents } = useQuery<{ }>(FETCH_EVENTS, { orderBy: EventSortField.BEGINS_ON, direction: SortDirection.ASC, + limit: 99 }); const events = computed( () => resultEvents.value?.events ?? { total: 0, elements: [] }