From 5ae19a48d9d7dfadfb9dd795aea401acf4c0431c Mon Sep 17 00:00:00 2001 From: wangdan-fit2cloud Date: Wed, 30 Oct 2024 15:32:49 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E4=BC=98=E5=8C=96=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=E6=A1=86=E5=85=B3=E9=97=AD=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/utils/message.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/src/utils/message.ts b/ui/src/utils/message.ts index c876575eda9..ea9df38884c 100644 --- a/ui/src/utils/message.ts +++ b/ui/src/utils/message.ts @@ -5,7 +5,7 @@ export const MsgSuccess = (message: string) => { message: message, type: 'success', showClose: true, - duration: 1500 + duration: 3000 }) } @@ -14,7 +14,7 @@ export const MsgInfo = (message: string) => { message: message, type: 'info', showClose: true, - duration: 1500 + duration: 3000 }) } @@ -23,7 +23,7 @@ export const MsgWarning = (message: string) => { message: message, type: 'warning', showClose: true, - duration: 1500 + duration: 3000 }) } @@ -32,7 +32,7 @@ export const MsgError = (message: string) => { message: message, type: 'error', showClose: true, - duration: 1500 + duration: 3000 }) }