Resolve "Titre 'Toute la journée' tronqué sur la page Mes Rendez-vous"

This commit is contained in:
Boris Waaub
2026-02-23 15:08:48 +00:00
committed by Boris Waaub
parent f7ad1972e2
commit d6ac49718e
2 changed files with 32 additions and 23 deletions

View File

@@ -0,0 +1,8 @@
kind: Fixed
body: |
- Remove unused all-day slot display
time: 2026-02-23T15:56:45.517079+01:00
custom:
Issue: "494"
MR: "965"
SchemaChange: No schema change

View File

@@ -285,29 +285,30 @@ const formatDate = (datetime: string, format: null | "time" = null) => {
};
const baseOptions = ref<CalendarOptions>({
locale: frLocale,
plugins: [interactionPlugin, timeGridPlugin],
initialView: "timeGridWeek",
initialDate: new Date(),
scrollTimeReset: false,
selectable: true,
// when the dates are changes in the fullcalendar view OR when new events are added
datesSet: onDatesSet,
// when a date is selected
select: onDateSelect,
// when a event is resized
eventResize: onEventDropOrResize,
// when an event is moved
eventDrop: onEventDropOrResize,
// when an event si clicked
eventClick: onEventClick,
selectMirror: false,
editable: true,
headerToolbar: {
left: "prev,next today",
center: "title",
right: "timeGridWeek,timeGridDay",
},
locale: frLocale,
plugins: [interactionPlugin, timeGridPlugin],
initialView: "timeGridWeek",
initialDate: new Date(),
scrollTimeReset: false,
selectable: true,
// when the dates are changes in the fullcalendar view OR when new events are added
datesSet: onDatesSet,
// when a date is selected
select: onDateSelect,
// when a event is resized
eventResize: onEventDropOrResize,
// when an event is moved
eventDrop: onEventDropOrResize,
// when an event si clicked
eventClick: onEventClick,
selectMirror: false,
editable: true,
headerToolbar: {
left: "prev,next today",
center: "title",
right: "timeGridWeek,timeGridDay",
},
allDaySlot: false,
});
const ranges = computed<EventInput[]>(() => {