From 6517b8c696e8b2a3bf44f2f7ca319d03506f9893 Mon Sep 17 00:00:00 2001 From: Yash Maheshwari Date: Wed, 13 Nov 2024 19:28:39 +0530 Subject: [PATCH] Fixed: issue in animation when fetching data manager log for the job(#680) --- src/views/Pipeline.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Pipeline.vue b/src/views/Pipeline.vue index de90cbc7..8aff535f 100644 --- a/src/views/Pipeline.vue +++ b/src/views/Pipeline.vue @@ -609,7 +609,7 @@ export default defineComponent({ await this.store.dispatch('job/updateCurrentJob', { job }); if(this.segmentSelected === 'history' && job.runtimeData?.configId) { - await this.store.dispatch('job/fetchDataManagerLogs', job.jobId) + this.store.dispatch('job/fetchDataManagerLogs', job.jobId) } if(!this.isDesktop && job?.jobId) { this.router.push({ name: 'JobDetails', params: { jobId: job?.jobId, category: "pipeline" } });