From 40983b4b99559962f9a78d7e3270bc39a558ac68 Mon Sep 17 00:00:00 2001 From: waleed Date: Tue, 3 Feb 2026 20:15:33 -0800 Subject: [PATCH] update other loc to match --- .../sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx index bf637c03f..bd8303e01 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx @@ -1173,7 +1173,7 @@ const WorkflowContent = React.memo(() => { block.parentId && (block.parentType === 'loop' || block.parentType === 'parallel') if (isInsideSubflow) return { canRun: false, reason: 'Cannot run from inside subflow' } - if (!dependenciesSatisfied) return { canRun: false, reason: 'Run previous blocks first' } + if (!dependenciesSatisfied) return { canRun: false, reason: 'Disabled: Run Blocks Before' } if (isNoteBlock) return { canRun: false, reason: undefined } if (isExecuting) return { canRun: false, reason: undefined }