Merge pull request #1741 from pateljannat/fui-upgrade

chore: upgraded frappe ui and made relevant changes
This commit is contained in:
Jannat Patel
2025-09-25 18:30:15 +05:30
committed by GitHub
18 changed files with 1892 additions and 427 deletions

View File

@@ -4,7 +4,7 @@
>
<Breadcrumbs :items="[{ label: __('Home'), route: { name: 'Home' } }]" />
</header> -->
<div class="w-full px-5 pt-10 pb-10">
<div class="w-full px-5 pt-5 pb-10">
<div class="flex items-center justify-between">
<div class="space-y-2">
<div class="text-xl font-bold">

View File

@@ -4,7 +4,7 @@
<Calendar
v-if="evaluations.data?.length"
:config="{
defaultMode: 'Month',
defaultMode: 'Week',
disableModes: ['Day', 'Week'],
redundantCellHeight: 100,
enableShortcuts: false,
@@ -87,8 +87,10 @@ const evaluations = createListResource({
mappedData.participant = d.member_name
mappedData.id = d.name
mappedData.venue = d.google_meet_link
mappedData.fromDate = `${d.date} ${d.start_time}`
mappedData.toDate = `${d.date} ${d.end_time}`
mappedData.fromDate = `${d.date}`
mappedData.toDate = `${d.date}`
mappedData.fromTime = d.start_time
mappedData.toTime = d.end_time
mappedData.color = 'green'
return mappedData

View File

@@ -112,6 +112,7 @@
<div class="space-x-2">
<Button
v-if="programMembers.data.length > 0"
@click="
() => {
showProgressDialog = true