From 68bdf506846d7525ff3e172d1573def9bc5be5b9 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 4 Feb 2026 03:48:13 +0000 Subject: [PATCH] feat(action-bar): change Run button label and hover tooltip - Changed 'Run from block' to 'Run' in tooltip - Updated disabled state hover to show 'Disabled: Run Blocks Before' Co-authored-by: Emir Karabeg --- .../w/[workflowId]/components/action-bar/action-bar.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/action-bar/action-bar.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/action-bar/action-bar.tsx index 1678b8a41..345c91854 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/action-bar/action-bar.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/action-bar/action-bar.tsx @@ -192,10 +192,10 @@ export const ActionBar = memo( {(() => { - if (disabled) return getTooltipMessage('Run from block') + if (disabled) return getTooltipMessage('Run') if (isExecuting) return 'Execution in progress' - if (!dependenciesSatisfied) return 'Run previous blocks first' - return 'Run from block' + if (!dependenciesSatisfied) return 'Disabled: Run Blocks Before' + return 'Run' })()}