From 88e86e6cfbb5a287ac0e1bb055d2c6478f2a053a Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Sun, 12 Apr 2026 11:03:20 +0530 Subject: [PATCH] fix: page length for jobs and certification listing --- frontend/src/pages/CertifiedParticipants.vue | 3 ++- frontend/src/pages/Jobs.vue | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/CertifiedParticipants.vue b/frontend/src/pages/CertifiedParticipants.vue index 44bd0af5..dfa4b407 100644 --- a/frontend/src/pages/CertifiedParticipants.vue +++ b/frontend/src/pages/CertifiedParticipants.vue @@ -74,7 +74,7 @@
-
+
{{ participant.full_name }}
@@ -163,6 +163,7 @@ const participants = createListResource({ doctype: 'LMS Certificate', url: 'lms.lms.api.get_certified_participants', start: 0, + pageLength: 40, cache: ['certified_participants'], }) diff --git a/frontend/src/pages/Jobs.vue b/frontend/src/pages/Jobs.vue index 7707fa5d..d7605206 100644 --- a/frontend/src/pages/Jobs.vue +++ b/frontend/src/pages/Jobs.vue @@ -213,6 +213,7 @@ const jobs = createListResource({ doctype: 'Job Opportunity', start: 0, cache: ['jobs'], + pageLength: 40, }) const updateJobs = () => {