File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 27
27
<v-container v-else >
28
28
29
29
<Fields .VSFBoolean
30
- v-if =" field.type === 'boolean '"
30
+ v-if =" field.type === 'fancyRadio '"
31
31
v-model =" modelValue[field.name]"
32
32
:field =" field"
33
33
:settings =" settings"
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export interface Field {
38
38
name : string ;
39
39
options ?: KeyStringAny ;
40
40
required ?: boolean ;
41
- type ?: 'boolean ' | 'checkbox ' | 'file' | 'email' | 'hidden' | 'number' | 'radio' | 'select' | 'switch' | 'textarea' | 'text' | 'textField' | undefined ;
41
+ type ?: 'checkbox ' | 'fancyRadio ' | 'file' | 'email' | 'hidden' | 'number' | 'radio' | 'select' | 'switch' | 'textarea' | 'text' | 'textField' | undefined ;
42
42
when ?: ( value : any ) => boolean ;
43
43
validate ?: ( field : Field , value : any ) => boolean ;
44
44
validateOn ?: string ;
You can’t perform that action at this time.
0 commit comments