diff --git a/frontend/vue-app/src/components/shared/ScheduleModal.vue b/frontend/vue-app/src/components/shared/ScheduleModal.vue index 1fc9614..759fa6a 100644 --- a/frontend/vue-app/src/components/shared/ScheduleModal.vue +++ b/frontend/vue-app/src/components/shared/ScheduleModal.vue @@ -54,8 +54,14 @@ @@ -247,7 +253,12 @@ const nextOccurrence = computed((): string | null => { today.setHours(0, 0, 0, 0) const fmt = (dt: Date) => - dt.toLocaleDateString('en-US', { weekday: 'short', month: 'short', day: 'numeric', year: 'numeric' }) + dt.toLocaleDateString('en-US', { + weekday: 'short', + month: 'short', + day: 'numeric', + year: 'numeric', + }) // Find the first hit date strictly after today for (let i = 1; i <= 365; i++) {