chg: Re-ordering field in the maintenance dialog

When using the maintenance dialog, the order
title/scheduled/completed/costs/notes seems to be  more sensible than
title/completed/scheduled/notes/costs.
Though notes/costs vs. costs/notes certainly can be argued about, in
most of my cases this order would be more useful than the other way
around.
This commit is contained in:
Daniel 2024-05-29 19:43:52 +02:00
parent 9b23d38830
commit ae0ba770d5

View file

@ -184,10 +184,10 @@
</template>
<form @submit.prevent="dispatchFormSubmit">
<FormTextField v-model="entry.name" autofocus label="Entry Name" />
<DatePicker v-model="entry.completedDate" label="Completed Date" />
<DatePicker v-model="entry.scheduledDate" label="Scheduled Date" />
<FormTextArea v-model="entry.description" label="Notes" />
<DatePicker v-model="entry.completedDate" label="Completed Date" />
<FormTextField v-model="entry.cost" autofocus label="Cost" />
<FormTextArea v-model="entry.description" label="Notes" />
<div class="py-2 flex justify-end">
<BaseButton type="submit" class="ml-2 mt-2">
<template #icon>