From 6909e73a51d4ac8e74bc1c994ccb204a5dad9010 Mon Sep 17 00:00:00 2001 From: Alexandro Uc Santos Date: Thu, 31 Jul 2025 21:34:10 -0600 Subject: [PATCH] fix: card proposals --- src/views/CalendarView.vue | 19 +++++++++++++++++-- src/views/proposals/TrucksPublishedView.vue | 2 -- .../proposals/components/CardProposal.vue | 6 +++--- src/views/users/components/CardUser.vue | 6 +++--- 4 files changed, 23 insertions(+), 10 deletions(-) diff --git a/src/views/CalendarView.vue b/src/views/CalendarView.vue index 410faa9..118fb5a 100644 --- a/src/views/CalendarView.vue +++ b/src/views/CalendarView.vue @@ -7,7 +7,7 @@ import useCalendar from '../composables/useCalendar'; import CustomPopup from '../components/CustomPopup.vue'; import { watch } from 'vue'; -import { useAuthStore } from '../stores/auth'; + import { useAuthStore } from '../stores/auth'; const events = ref([]); @@ -64,7 +64,7 @@ import { useAuthStore } from '../stores/auth'; }, defaultMode: 'month', isSilent: true, - // showCurrentTime: false, // Display a line indicating the current time + // showCurrentTime: true, // Display a line indicating the current time } onMounted( async() => { @@ -198,6 +198,21 @@ import { useAuthStore } from '../stores/auth'; @datetime-was-clicked="handleClickDate" :is-loading="loading" > +