From 80e5e242b60039dd2005813040b68422a3f5dadc Mon Sep 17 00:00:00 2001 From: shaohuzhang1 <80892890+shaohuzhang1@users.noreply.github.com> Date: Sun, 1 Dec 2024 23:24:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E8=A1=A8=E5=8D=95?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=97=A0=E6=B3=95=E7=82=B9=E5=87=BB=E6=97=A0?= =?UTF-8?q?=E6=95=88=20(#1723)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/workflow/nodes/form-node/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/workflow/nodes/form-node/index.vue b/ui/src/workflow/nodes/form-node/index.vue index 3f5badd28..75b8627f6 100644 --- a/ui/src/workflow/nodes/form-node/index.vue +++ b/ui/src/workflow/nodes/form-node/index.vue @@ -133,7 +133,7 @@ const addFormField = (form_field_data: any) => { MsgError('参数已存在:' + form_field_data.field) return } - 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]) sync_form_field_list() } const sync_form_field_list = () => {