Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
chg: Re-ordering field in the maintenance dialog
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Spreadcat committed May 29, 2024
1 parent 9b23d38 commit ae0ba77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/pages/item/[id]/index/maintenance.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit ae0ba77

Please sign in to comment.