From 2ce5ba72ee3afa7152716cd385fc4ba124ac7e74 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Thu, 21 Nov 2024 11:04:30 +0800 Subject: [PATCH] :art: Change the statusbar display timeout to 12s --- app/src/dialog/processSystem.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/dialog/processSystem.ts b/app/src/dialog/processSystem.ts index 52c4d6c39..809181913 100644 --- a/app/src/dialog/processSystem.ts +++ b/app/src/dialog/processSystem.ts @@ -408,7 +408,7 @@ export const progressStatus = (data: IWebSocketData) => { statusElement.style.bottom = "0"; statusTimeout = window.setTimeout(() => { statusElement.style.bottom = ""; - }, 7000); + }, 12000); } else { const msgElement = statusElement.querySelector(".status__msg"); if (msgElement) { @@ -416,7 +416,7 @@ export const progressStatus = (data: IWebSocketData) => { msgElement.innerHTML = data.msg; statusTimeout = window.setTimeout(() => { msgElement.innerHTML = ""; - }, 7000); + }, 12000); } } };