mirror of
https://github.com/hay-kot/homebox.git
synced 2024-12-18 04:56:30 +00:00
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:
parent
9b23d38830
commit
ae0ba770d5
1 changed files with 2 additions and 2 deletions
|
@ -184,10 +184,10 @@
|
||||||
</template>
|
</template>
|
||||||
<form @submit.prevent="dispatchFormSubmit">
|
<form @submit.prevent="dispatchFormSubmit">
|
||||||
<FormTextField v-model="entry.name" autofocus label="Entry Name" />
|
<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" />
|
<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" />
|
<FormTextField v-model="entry.cost" autofocus label="Cost" />
|
||||||
|
<FormTextArea v-model="entry.description" label="Notes" />
|
||||||
<div class="py-2 flex justify-end">
|
<div class="py-2 flex justify-end">
|
||||||
<BaseButton type="submit" class="ml-2 mt-2">
|
<BaseButton type="submit" class="ml-2 mt-2">
|
||||||
<template #icon>
|
<template #icon>
|
||||||
|
|
Loading…
Reference in a new issue