We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc48f56 commit a892c43Copy full SHA for a892c43
ui/src/workflow/nodes/form-node/index.vue
@@ -133,7 +133,7 @@ const addFormField = (form_field_data: any) => {
133
MsgError('参数已存在:' + form_field_data.field)
134
return
135
}
136
- form_data.value.form_field_list = [...form_data.value.form_field_list, form_field_data]
+ form_data.value.form_field_list = cloneDeep([...form_data.value.form_field_list, form_field_data])
137
sync_form_field_list()
138
139
const sync_form_field_list = () => {
0 commit comments