chore: merged conflicts

This commit is contained in:
Jannat Patel
2025-01-10 11:03:44 +05:30
22 changed files with 383 additions and 93 deletions

View File

@@ -92,10 +92,10 @@
</Tabs>
</div>
<div class="p-5">
<div class="text-xl font-semibold mb-2">
{{ batch.data.title }}
<div class="text-gray-700 font-semibold mb-4">
{{ __('About this batch') }}:
</div>
<div v-html="batch.data.description" class="leading-5 mb-2"></div>
<div v-html="batch.data.description" class="leading-5 mb-4"></div>
<div class="flex items-center avatar-group overlap mb-5">
<div

View File

@@ -163,7 +163,7 @@ onMounted(() => {
const batches = createResource({
doctype: 'LMS Batch',
url: 'lms.lms.utils.get_batches',
cache: ['batches', user.data?.email],
cache: ['batches', user.data?.email || ''],
auto: true,
})

View File

@@ -71,7 +71,7 @@
<template #default="{ tab }">
<div
v-if="tab.courses && tab.courses.value.length"
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-5 my-5 mx-5"
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 2xl:grid-cols-4 3xl:grid-cols-5 gap-7 my-5 mx-5"
>
<router-link
v-for="course in tab.courses.value"

View File

@@ -475,7 +475,8 @@ updateDocumentTitle(pageMeta)
font-weight: 500;
}
.embed-tool__caption {
.embed-tool__caption,
.cdx-simple-image__caption {
display: none;
}
@@ -585,4 +586,8 @@ iframe {
border-top: 3px solid theme('colors.gray.700');
border-bottom: 3px solid theme('colors.gray.700');
}
.tc-table {
border-left: 1px solid #e8e8eb;
}
</style>

View File

@@ -619,4 +619,8 @@ iframe {
border-top: 3px solid theme('colors.gray.700');
border-bottom: 3px solid theme('colors.gray.700');
}
.tc-table {
border-left: 1px solid #e8e8eb;
}
</style>

View File

@@ -28,9 +28,7 @@
size="lg"
>
{{ program.members }}
{{
program.members == 1 ? __(singularize('members')) : __('members')
}}
{{ program.members == 1 ? __('member') : __('members') }}
</Badge>
<Badge
v-if="program.progress"
@@ -133,7 +131,7 @@ import { computed, inject, onMounted, ref } from 'vue'
import { BookOpen, Edit, Plus, LockKeyhole } from 'lucide-vue-next'
import CourseCard from '@/components/CourseCard.vue'
import { useRouter } from 'vue-router'
import { showToast, singularize } from '@/utils'
import { showToast } from '@/utils'
import { useSettings } from '@/stores/settings'
const user = inject('$user')