fix: page length for jobs and certification listing

This commit is contained in:
Jannat Patel
2026-04-12 11:03:20 +05:30
parent 04fe73531f
commit 88e86e6cfb
2 changed files with 3 additions and 1 deletions

View File

@@ -74,7 +74,7 @@
<div class="flex space-x-4">
<UserAvatar :user="participant" size="2xl" />
<div class="flex flex-col">
<div class="font-semibold">
<div class="font-semibold line-clamp-1">
{{ participant.full_name }}
</div>
<div class="text-sm leading-5 line-clamp-1 mb-4">
@@ -163,6 +163,7 @@ const participants = createListResource({
doctype: 'LMS Certificate',
url: 'lms.lms.api.get_certified_participants',
start: 0,
pageLength: 40,
cache: ['certified_participants'],
})

View File

@@ -213,6 +213,7 @@ const jobs = createListResource({
doctype: 'Job Opportunity',
start: 0,
cache: ['jobs'],
pageLength: 40,
})
const updateJobs = () => {