From 71107fa42fb372ba05aeb196026681d0164a7728 Mon Sep 17 00:00:00 2001 From: ssongliu <73214554+ssongliu@users.noreply.github.com> Date: Thu, 6 Jul 2023 16:06:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B6=88=E6=81=AF=E5=BC=B9=E6=A1=86?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E8=B0=83=E6=95=B4=20(#1563)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/utils/message.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/utils/message.ts b/frontend/src/utils/message.ts index feeb66ed6..4601aa7be 100644 --- a/frontend/src/utils/message.ts +++ b/frontend/src/utils/message.ts @@ -4,7 +4,7 @@ export const MsgSuccess = (message) => { ElMessage.success({ message: message, type: 'success', - showClose: false, + showClose: true, duration: 3000, }); }; @@ -13,7 +13,7 @@ export const MsgInfo = (message) => { ElMessage.info({ message: message, type: 'info', - showClose: false, + showClose: true, duration: 3000, }); };