Skip to content

Commit a892c43

Browse files
committed
fix: 修复表单添加无法点击无效
1 parent cc48f56 commit a892c43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/workflow/nodes/form-node/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ const addFormField = (form_field_data: any) => {
133133
MsgError('参数已存在:' + form_field_data.field)
134134
return
135135
}
136-
form_data.value.form_field_list = [...form_data.value.form_field_list, form_field_data]
136+
form_data.value.form_field_list = cloneDeep([...form_data.value.form_field_list, form_field_data])
137137
sync_form_field_list()
138138
}
139139
const sync_form_field_list = () => {

0 commit comments

Comments
 (0)