From 44587219dccd949d851fc274bfb6da90b18d326f Mon Sep 17 00:00:00 2001 From: "xinxin.wu" Date: Wed, 24 Jul 2024 13:19:31 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=AE=A1=E5=88=92):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=B5=8B=E8=AF=95=E8=AE=A1=E5=88=92=E8=A7=84?= =?UTF-8?q?=E5=88=92=E8=84=91=E5=9B=BE=E4=BF=9D=E5=AD=98=E5=81=B6=E5=8F=91?= =?UTF-8?q?=E6=80=A7=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/business/ms-minders/testPlanMinder/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/business/ms-minders/testPlanMinder/index.vue b/frontend/src/components/business/ms-minders/testPlanMinder/index.vue index 04d5c55f60..283c118b89 100644 --- a/frontend/src/components/business/ms-minders/testPlanMinder/index.vue +++ b/frontend/src/components/business/ms-minders/testPlanMinder/index.vue @@ -860,7 +860,7 @@ configFormRef.value?.validate((errors) => { if (!errors) { const node: MinderJsonNode = window.minder.getSelectedNode(); - if (node.data && configForm.value) { + if (node && node?.data && configForm.value) { node.data = { ...node.data, ...cloneDeep(configForm.value),