From 9f893c1e2f7938483205deee996d074eca800d4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Harun=20Ba=C5=A1i=C4=87?= Date: Tue, 29 Oct 2024 16:49:27 +0100 Subject: [PATCH] feat(TestRun): increase time needed for the run to be marked as read on initial view --- components/alert-actions/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/alert-actions/script.js b/components/alert-actions/script.js index 1b339e9..00aaa9d 100644 --- a/components/alert-actions/script.js +++ b/components/alert-actions/script.js @@ -64,7 +64,7 @@ class VrtsAlertActions extends window.HTMLElement { if ( isReadStatusAction && isUnread ) { this.setAsReadTimeout = setTimeout( () => { action.click(); - }, 500 ); + }, 1000 ); } } ); }