From 3f0c13cafd3c2042694d46dae6da53b283392258 Mon Sep 17 00:00:00 2001 From: Afiq Date: Fri, 8 Aug 2025 15:45:30 +0800 Subject: [PATCH] Comment out startProcessExecution call in loadProcess function to prevent unintended execution during process loading in [id].vue. --- pages/workflow/[id].vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/workflow/[id].vue b/pages/workflow/[id].vue index ecc7726..d355793 100644 --- a/pages/workflow/[id].vue +++ b/pages/workflow/[id].vue @@ -200,7 +200,7 @@ const loadProcess = async (retryCount = 0) => { visitedNodesInSession.value.clear(); // Start the process execution (case instance) - await startProcessExecution(); + // await startProcessExecution(); } else { throw new Error(response.message || 'Invalid process response');