fix: Simplify AutoForm and fix select (#6022)

Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
This commit is contained in:
Michael Genson
2025-08-25 02:19:46 -05:00
committed by GitHub
parent fc38ef2ba9
commit 9e568a1182
2 changed files with 1 additions and 10 deletions

View File

@@ -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

View File

@@ -4,7 +4,6 @@ type FormFieldType = "text" | "textarea" | "list" | "select" | "object" | "boole
export interface FormSelectOption {
text: string;
description?: string;
}
export interface FormField {