From cdd90756709f2008d8419a00b1eb4dcdce8739dd Mon Sep 17 00:00:00 2001 From: Marian Moravcik Date: Fri, 13 Jan 2023 11:48:39 +0100 Subject: [PATCH] no log: Don't close updatable notification at timeout --- frontend/src/modules/task/notification.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/modules/task/notification.ts b/frontend/src/modules/task/notification.ts index a9d7246c5..1bd1b3de5 100644 --- a/frontend/src/modules/task/notification.ts +++ b/frontend/src/modules/task/notification.ts @@ -54,7 +54,7 @@ export const notification = { title: header, message: `[${current}/${total}] ${body}`, loading: true, - autoClose: 2 * 60 * 1000, + autoClose: false, }; }, end: (id: string, header: string): NotificationProps & { id: string } => {