From 80f9c598e3a71edbe32b8690972e8a9b3c1456a8 Mon Sep 17 00:00:00 2001 From: "xinxin.wu" Date: Fri, 12 Jul 2024 18:38:53 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=AE=A1=E5=88=92):=20?= =?UTF-8?q?=E5=8E=BB=E6=8E=89=E5=A4=9A=E4=BD=99=E7=9A=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/test-plan/report/detail/component/config.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/test-plan/report/detail/component/config.vue b/frontend/src/views/test-plan/report/detail/component/config.vue index 8c54e4f8e2..17a7b90aca 100644 --- a/frontend/src/views/test-plan/report/detail/component/config.vue +++ b/frontend/src/views/test-plan/report/detail/component/config.vue @@ -278,8 +278,8 @@ watch( [() => configList.value, () => cardItemList.value], () => { - const configValue = resetConfigEditList(cloneDeep(configList.value)); - const cardItemValue = resetConfigEditList(cloneDeep(cardItemList.value)); + const configValue = resetConfigEditList(configList.value); + const cardItemValue = resetConfigEditList(cardItemList.value); const isisEqualList = props.isGroup ? cloneDeep(defaultGroupConfig) : cloneDeep(defaultSingleConfig); if (!isEqual(configValue, isisEqualList) || (!isEqual(cardItemValue, isisEqualList) && !isInit.value)) {