2 Commits

Author SHA1 Message Date
7fc640d679 v0.6.1 2024-06-05 20:36:45 -04:00
91b54cf791 Bigger buttons 2024-06-04 16:41:43 -04:00
4 changed files with 9 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "oys_bab", "name": "oys_bab",
"version": "0.0.2", "version": "0.6.1",
"description": "Manage a Borrow a Boat program for a Yacht Club", "description": "Manage a Borrow a Boat program for a Yacht Club",
"productName": "OYS Borrow a Boat", "productName": "OYS Borrow a Boat",
"author": "Patrick Toal <ptoal@takeflight.ca>", "author": "Patrick Toal <ptoal@takeflight.ca>",

View File

@@ -101,15 +101,18 @@
<q-btn <q-btn
label="Delete" label="Delete"
color="negative" color="negative"
size="lg"
v-if="reservation?.$id" v-if="reservation?.$id"
@click="onDelete" /> @click="onDelete" />
<q-btn <q-btn
label="Reset" label="Reset"
@click="onReset" @click="onReset"
size="lg"
color="secondary" /> color="secondary" />
<q-btn <q-btn
label="Submit" label="Submit"
@click="onSubmit" @click="onSubmit"
size="lg"
color="primary" /> color="primary" />
</q-card-actions> </q-card-actions>
</q-card> </q-card>

View File

@@ -11,7 +11,7 @@
<q-toolbar-title>{{ pageTitle }}</q-toolbar-title> <q-toolbar-title>{{ pageTitle }}</q-toolbar-title>
<q-space /> <q-space />
<div>v2024.6.4.1</div> <div>v2024.6.4.2</div>
</q-toolbar> </q-toolbar>
</q-header> </q-header>
<LeftDrawer <LeftDrawer

View File

@@ -52,11 +52,13 @@
<q-card-actions v-if="!isPast(reservation.end)"> <q-card-actions v-if="!isPast(reservation.end)">
<q-btn <q-btn
flat flat
size="lg"
:to="{ name: 'edit-reservation', params: { id: reservation.$id } }"> :to="{ name: 'edit-reservation', params: { id: reservation.$id } }">
Modify Modify
</q-btn> </q-btn>
<q-btn <q-btn
flat flat
size="lg"
@click="cancelReservation()"> @click="cancelReservation()">
Delete Delete
</q-btn> </q-btn>
@@ -80,11 +82,13 @@
<q-card-actions align="right"> <q-card-actions align="right">
<q-btn <q-btn
flat flat
size="lg"
label="Cancel" label="Cancel"
color="primary" color="primary"
v-close-popup /> v-close-popup />
<q-btn <q-btn
flat flat
size="lg"
label="Delete" label="Delete"
color="negative" color="negative"
@click="reservationStore.deleteReservation(reservation)" @click="reservationStore.deleteReservation(reservation)"