UI Enhancements
This commit is contained in:
@@ -163,6 +163,7 @@ watch(reservation, (newReservation) => {
|
||||
} else {
|
||||
const updatedReservation = {
|
||||
...newReservation,
|
||||
user: auth.currentUser?.$id,
|
||||
interval: {
|
||||
start: newReservation.start,
|
||||
end: newReservation.end,
|
||||
@@ -191,7 +192,6 @@ const bookingName = computed(() =>
|
||||
|
||||
const boat = computed((): Boat | null => {
|
||||
const boatId = bookingForm.value.interval?.resource;
|
||||
console.log('Boat Lookup:', boatId);
|
||||
return boatStore.getBoatById(boatId);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user