From 4b7c60c552693301e59dc7cdcc64767e396bbe5b Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Fri, 8 Mar 2024 09:39:03 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20=E7=A7=BB?= =?UTF-8?q?=E5=8A=A8=E7=AB=AF=E5=B8=83=E5=B1=80=E5=A4=8D=E5=88=B6=E5=B7=B2?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=87=B3=E5=B8=83=E5=B1=80=E4=B8=AD=E7=9A=84?= =?UTF-8?q?=E5=9B=BE=E8=A1=A8=E4=BC=9A=E7=9B=B4=E6=8E=A5=E8=BF=9B=E5=85=A5?= =?UTF-8?q?=E5=B7=A6=E4=BE=A7=E6=97=A0=E9=9C=80=E5=86=8D=E5=B8=83=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/store/modules/data-visualization/copy.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/core/core-frontend/src/store/modules/data-visualization/copy.ts b/core/core-frontend/src/store/modules/data-visualization/copy.ts index d3da8c80fe..8eefad469e 100644 --- a/core/core-frontend/src/store/modules/data-visualization/copy.ts +++ b/core/core-frontend/src/store/modules/data-visualization/copy.ts @@ -178,6 +178,7 @@ function deepCopyHelper(data, idMap) { const newComponentId = generateID() idMap[data.id] = newComponentId result.id = newComponentId + result.inMobile = false if (result.component === 'Group') { result.propValue.forEach((component, i) => { result.propValue[i] = deepCopyHelper(component, idMap)