summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarian Moravcik <[email protected]>2023-01-13 11:48:39 +0100
committerMarian Moravcik <[email protected]>2023-01-13 11:48:39 +0100
commitcdd90756709f2008d8419a00b1eb4dcdce8739dd (patch)
tree062c37ac64b49dd425b12508c196216c95f17710
parentd2bd0c7c7e559bf9742ed2ebb4944e3913970caa (diff)
downloadbazarr-cdd90756709f2008d8419a00b1eb4dcdce8739dd.tar.gz
bazarr-cdd90756709f2008d8419a00b1eb4dcdce8739dd.zip
no log: Don't close updatable notification at timeout
-rw-r--r--frontend/src/modules/task/notification.ts2
1 files changed, 1 insertions, 1 deletions
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 } => {