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 = () => {