From 288343cedeebf0ffa3523c3e1cc87cfc4efd4e09 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Thu, 28 Dec 2023 09:33:53 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BB=AA=E8=A1=A8=E6=9D=BF=E5=86=85/?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F=E5=86=85=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E4=BB=AA=E8=A1=A8=E6=9D=BF/=E6=95=B0=E6=8D=AE=E5=A4=A7?= =?UTF-8?q?=E5=B1=8F=E5=90=8D=E7=A7=B0-=E6=8F=90=E7=A4=BA=E5=86=85?= =?UTF-8?q?=E5=AE=B9=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/components/dashboard/DbToolbar.vue | 2 +- .../src/components/data-visualization/DvToolbar.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/components/dashboard/DbToolbar.vue b/core/core-frontend/src/components/dashboard/DbToolbar.vue index 616799591f..bcdab267b6 100644 --- a/core/core-frontend/src/components/dashboard/DbToolbar.vue +++ b/core/core-frontend/src/components/dashboard/DbToolbar.vue @@ -66,7 +66,7 @@ const closeEditCanvasName = () => { return } if (inputName.value.trim().length > 64 || inputName.value.trim().length < 2) { - ElMessage.warning('名称字段长度不能2-64个字符') + ElMessage.warning('名称字段长度2-64个字符') editCanvasName() return } diff --git a/core/core-frontend/src/components/data-visualization/DvToolbar.vue b/core/core-frontend/src/components/data-visualization/DvToolbar.vue index d81e98b940..5e1d99f82e 100644 --- a/core/core-frontend/src/components/data-visualization/DvToolbar.vue +++ b/core/core-frontend/src/components/data-visualization/DvToolbar.vue @@ -34,7 +34,7 @@ const closeEditCanvasName = () => { return } if (inputName.value.trim().length > 64 || inputName.value.trim().length < 2) { - ElMessage.warning('名称字段长度不能2-64个字符') + ElMessage.warning('名称字段长度2-64个字符') editCanvasName() return }