From 232f8f0301fee5a631408104f0f61adf4bb7d4c1 Mon Sep 17 00:00:00 2001 From: Nolan Ehrstrom Date: Mon, 29 Jul 2024 13:26:58 -0700 Subject: [PATCH] Set node id before loading the task for webentry --- src/components/task.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/task.vue b/src/components/task.vue index 507ae99ab..88fcf6ac4 100644 --- a/src/components/task.vue +++ b/src/components/task.vue @@ -488,8 +488,8 @@ export default { this.emitIfTaskCompleted(requestId); } this.taskId = task.id; - this.loadTask(); this.nodeId = task.element_id; + this.loadTask(); } else if (this.parentRequest && ['COMPLETED', 'CLOSED'].includes(this.task.process_request.status)) { this.$emit('completed', this.getAllowedRequestId()); } else if (!this.taskPreview) {