From aecef57dfac109439cbca0e16d018f573c8032a0 Mon Sep 17 00:00:00 2001 From: Nikhil Ashoka Date: Wed, 29 Jan 2025 12:45:26 +0530 Subject: [PATCH] Fixed Delete All Event logs - Added delay 8 seconds to fetch the updated list in Event logs page. - Defect: https://jazz07.rchland.ibm.com:13443/jazz/web/projects/CSSD#action=com.ibm.team.workitem.viewWorkItem&id=673089 Signed-off-by: Nikhil Ashoka --- src/views/Logs/EventLogs/EventLogs.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/Logs/EventLogs/EventLogs.vue b/src/views/Logs/EventLogs/EventLogs.vue index 87d8da581f..e4bccc0a41 100644 --- a/src/views/Logs/EventLogs/EventLogs.vue +++ b/src/views/Logs/EventLogs/EventLogs.vue @@ -580,7 +580,7 @@ export default { ); } this.endLoader(); - }, 5000); + }, 8000); }) .catch(({ message }) => { this.endLoader(); @@ -691,7 +691,7 @@ export default { ); } this.endLoader(); - }, 5000); + }, 8000); }) .catch(({ message }) => { this.endLoader();