From 4811bd6f3eb2325ff2c2113a8ca38d25cd596323 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Tue, 18 Nov 2025 20:00:44 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=A4=A7=E5=B1=8F):=20=E5=B5=8C=E5=85=A5?= =?UTF-8?q?=E5=BC=8F=E5=9C=BA=E6=99=AF=E5=A4=8D=E5=88=B6=E5=A4=A7=E5=B1=8F?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E6=B2=A1=E6=9C=89=E6=9D=83=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/data-visualization/index.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/views/data-visualization/index.vue b/core/core-frontend/src/views/data-visualization/index.vue index 90b4170003..b3c97a68f4 100644 --- a/core/core-frontend/src/views/data-visualization/index.vue +++ b/core/core-frontend/src/views/data-visualization/index.vue @@ -396,7 +396,8 @@ onMounted(async () => { embeddedStore.templateParams || router.currentRoute.value.query.templateParams createType = embeddedStore.createType || router.currentRoute.value.query.createType const opt = embeddedStore.opt || router.currentRoute.value.query.opt - const checkResult = await checkPer(dvId) + const checkDvId = opt && opt === 'copy' ? null : dvId + const checkResult = await checkPer(checkDvId) if (!checkResult) { return }