fix: certified participants page mobile layout

This commit is contained in:
Jannat Patel
2024-05-07 19:03:27 +05:30
parent 98c748359a
commit b4cc0c6807
8 changed files with 53 additions and 34 deletions

View File

@@ -34,13 +34,9 @@ const props = defineProps({
})
const certificates = createResource({
url: 'frappe.client.get_list',
url: 'lms.lms.api.get_certificates',
params: {
doctype: 'LMS Certificate',
fields: ['name', 'course', 'course_title', 'issue_date', 'template'],
filters: {
member: props.profile.data.name,
},
member: props.profile.data.name,
},
auto: true,
})