Skip to content

Commit 68bdf50

Browse files
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 <emir-karabeg@users.noreply.github.com>
1 parent 4db6e55 commit 68bdf50

File tree

1 file changed

+3
-3
lines changed
  • apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/action-bar

1 file changed

+3
-3
lines changed

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/action-bar/action-bar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,10 @@ export const ActionBar = memo(
192192
</Tooltip.Trigger>
193193
<Tooltip.Content side='top'>
194194
{(() => {
195-
if (disabled) return getTooltipMessage('Run from block')
195+
if (disabled) return getTooltipMessage('Run')
196196
if (isExecuting) return 'Execution in progress'
197-
if (!dependenciesSatisfied) return 'Run previous blocks first'
198-
return 'Run from block'
197+
if (!dependenciesSatisfied) return 'Disabled: Run Blocks Before'
198+
return 'Run'
199199
})()}
200200
</Tooltip.Content>
201201
</Tooltip.Root>

0 commit comments

Comments
 (0)