From 90bddd454a62b20c1c11bab650be710c0058e258 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Mon, 3 Jun 2024 18:15:51 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F):=20?= =?UTF-8?q?=E6=96=B0=E5=BB=BA=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F-?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=B7=91=E9=A9=AC=E7=81=AF=EF=BC=8C=E9=BC=A0?= =?UTF-8?q?=E6=A0=87=E7=84=A6=E7=82=B9=E4=BB=8E=E8=BE=93=E5=85=A5=E6=A1=86?= =?UTF-8?q?=E7=A7=BB=E5=8A=A8=E5=88=B0=E8=BE=93=E5=85=A5=E6=A1=86=E5=A4=96?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E7=A1=AE=E5=AE=9A=EF=BC=8C=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E6=A1=86=E5=86=85=E5=AD=98=E5=9C=A8 ?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/custom-component/scroll-text/Component.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/custom-component/scroll-text/Component.vue b/core/core-frontend/src/custom-component/scroll-text/Component.vue index 3e7dd1b6ee..c15a17f90c 100644 --- a/core/core-frontend/src/custom-component/scroll-text/Component.vue +++ b/core/core-frontend/src/custom-component/scroll-text/Component.vue @@ -81,14 +81,14 @@ const clearStyle = e => { } const handleBlur = e => { - element.value.propValue = e.target.innerHTML || ' ' + element.value.propValue = e.target.innerHTML || '' const html = e.target.innerHTML if (html !== '') { element.value.propValue = e.target.innerHTML } else { element.value.propValue = '' nextTick(function () { - element.value.propValue = ' ' + element.value.propValue = '' }) } canEdit.value = false