mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-26 08:15:08 -07:00
fix: Simplify AutoForm and fix select (#6022)
Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
This commit is contained in:
parent
fc38ef2ba9
commit
9e568a1182
2 changed files with 1 additions and 10 deletions
|
@ -106,15 +106,7 @@
|
|||
persistent-hint
|
||||
lazy-validation
|
||||
@blur="emitBlur"
|
||||
>
|
||||
<template #item="{ item }">
|
||||
<v-list-item
|
||||
v-bind="props"
|
||||
:title="item.raw.text"
|
||||
:subtitle="item.raw.description"
|
||||
/>
|
||||
</template>
|
||||
</v-select>
|
||||
|
||||
<!-- Color Picker -->
|
||||
<div
|
||||
|
|
|
@ -4,7 +4,6 @@ type FormFieldType = "text" | "textarea" | "list" | "select" | "object" | "boole
|
|||
|
||||
export interface FormSelectOption {
|
||||
text: string;
|
||||
description?: string;
|
||||
}
|
||||
|
||||
export interface FormField {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue