feat: change subscription field

This commit is contained in:
yessenia
2025-10-09 16:45:32 +08:00
parent 323e183775
commit 75b3f5ac5a
7 changed files with 76 additions and 80 deletions

View File

@ -196,7 +196,7 @@ const BaseField = ({
)
}
{
formItemType === FormTypeEnum.select && multiple && (
formItemType === FormTypeEnum.checkbox /* && multiple */ && (
<CheckboxList
title={name}
value={value}

View File

@ -52,6 +52,7 @@ export type FormSchema = {
required: boolean
multiple?: boolean
default?: any
description?: string | TypeWithI18N | Record<Locale, string>
tooltip?: string | TypeWithI18N | Record<Locale, string>
show_on?: FormShowOnObject[]
url?: string