From 2fb236cf97db6ea86c0674ac909433df161186e7 Mon Sep 17 00:00:00 2001 From: Patrick Toal Date: Fri, 24 May 2024 08:36:28 -0400 Subject: [PATCH] Style edits --- src/pages/schedule/BoatReservationPage.vue | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/pages/schedule/BoatReservationPage.vue b/src/pages/schedule/BoatReservationPage.vue index 6bb396a..099dda1 100644 --- a/src/pages/schedule/BoatReservationPage.vue +++ b/src/pages/schedule/BoatReservationPage.vue @@ -2,7 +2,6 @@
New Booking
@@ -15,7 +14,9 @@ clickable @click="boatSelect = true"> - + - + {{ date.formatDate( new Date(bookingForm.startDate as string), - 'ddd MMM Do @ hh:mm A' + 'ddd MMM Do hh:mm A' ) }} @@ -57,11 +58,11 @@ color="primary" label="End" /> - + {{ date.formatDate( new Date(bookingForm.endDate as string), - 'ddd MMM Do @ hh:mm A' + 'ddd MMM Do hh:mm A' ) }} @@ -191,6 +192,7 @@ const bookingDuration = computed((): { hours: number; minutes: number } => { }); const onReset = () => { + interval.value = undefined; bookingForm.value = { ...newForm }; }; const onSubmit = () => {