Skip to content

Commit c9a614c

Browse files
authored
feat: The form collection 'multiple-choice box' supports custom input (#4218)
1 parent 6f1c83d commit c9a614c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ui/src/components/dynamics-form/items/select/MultiSelect.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
class="m-2"
44
multiple
55
filterable
6+
allow-create
67
clearable
78
v-bind="$attrs"
89
v-model="_modelValue"
@@ -43,7 +44,7 @@ const _modelValue = computed({
4344
},
4445
set($event) {
4546
emit('update:modelValue', $event)
46-
}
47+
},
4748
})
4849
const textField = computed(() => {
4950
return props.formField.text_field ? props.formField.text_field : 'key'

0 commit comments

Comments
 (0)