mirror of
https://github.com/frappe/lms.git
synced 2026-04-22 16:28:00 +03:00
fix: page length for jobs and certification listing
This commit is contained in:
@@ -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'],
|
||||
})
|
||||
|
||||
|
||||
@@ -213,6 +213,7 @@ const jobs = createListResource({
|
||||
doctype: 'Job Opportunity',
|
||||
start: 0,
|
||||
cache: ['jobs'],
|
||||
pageLength: 40,
|
||||
})
|
||||
|
||||
const updateJobs = () => {
|
||||
|
||||
Reference in New Issue
Block a user