fix: calendar background and assignment text color

This commit is contained in:
Jannat Patel
2025-02-11 16:28:25 +05:30
47 changed files with 372 additions and 323 deletions

View File

@@ -188,4 +188,4 @@ const assignmentOptions = computed(() => {
{ label: 'URL', value: 'URL' },
]
})
</script>
</script>

View File

@@ -123,7 +123,7 @@
<div
v-if="course.tags"
v-for="tag in course.tags?.split(', ')"
class="flex items-center bg-surface-gray-2 p-2 rounded-md mr-2"
class="flex items-center bg-surface-gray-2 text-ink-gray-7 p-2 rounded-md mr-2"
>
{{ tag }}
<X

View File

@@ -44,7 +44,7 @@ const certificates = createListResource({
filters: {
member: props.profile.data?.name,
},
fields: ['name', 'course_title', 'batch_title', 'issue_date'],
fields: ['name', 'course_title', 'batch_title', 'issue_date', 'template'],
cache: ['certificates', props.profile.data?.name],
})