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
commit 9e568a1182
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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 {