From cbbaba7e2f6095f0f87223596a5fb6373830462e Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Fri, 12 Jul 2024 15:45:53 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AF=BC=E5=87=BA=E5=9B=BE=E7=89=87=E6=97=B6?= =?UTF-8?q?=E5=AD=98=E5=9C=A8=E6=BB=9A=E5=8A=A8=E6=9D=A1=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/data-visualization/canvas/DePreview.vue | 1 + core/core-frontend/src/style/index.less | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/core/core-frontend/src/components/data-visualization/canvas/DePreview.vue b/core/core-frontend/src/components/data-visualization/canvas/DePreview.vue index c7aa3e3295..431b6fffbb 100644 --- a/core/core-frontend/src/components/data-visualization/canvas/DePreview.vue +++ b/core/core-frontend/src/components/data-visualization/canvas/DePreview.vue @@ -349,6 +349,7 @@ defineExpose({ :id="domId" class="canvas-container" :style="canvasStyle" + :class="{ 'de-download-custom': downloadStatus }" ref="previewCanvas" @mousedown="handleMouseDown" > diff --git a/core/core-frontend/src/style/index.less b/core/core-frontend/src/style/index.less index 06b38f25a0..f625e010ba 100644 --- a/core/core-frontend/src/style/index.less +++ b/core/core-frontend/src/style/index.less @@ -510,3 +510,9 @@ strong { width: 100%; height: 100% !important; } + +.de-download-custom { + div { + overflow: hidden; + } +}