Skip to content

Commit e5d078b

Browse files
committed
updated tooltip text for run from block
1 parent d6d165a commit e5d078b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ export const ActionBar = memo(
194194
{(() => {
195195
if (disabled) return getTooltipMessage('Run from block')
196196
if (isExecuting) return 'Execution in progress'
197-
if (!dependenciesSatisfied) return 'Run upstream blocks first'
197+
if (!dependenciesSatisfied) return 'Run previous blocks first'
198198
return 'Run from block'
199199
})()}
200200
</Tooltip.Content>

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1173,7 +1173,7 @@ const WorkflowContent = React.memo(() => {
11731173
block.parentId && (block.parentType === 'loop' || block.parentType === 'parallel')
11741174

11751175
if (isInsideSubflow) return { canRun: false, reason: 'Cannot run from inside subflow' }
1176-
if (!dependenciesSatisfied) return { canRun: false, reason: 'Run upstream blocks first' }
1176+
if (!dependenciesSatisfied) return { canRun: false, reason: 'Run previous blocks first' }
11771177
if (isNoteBlock) return { canRun: false, reason: undefined }
11781178
if (isExecuting) return { canRun: false, reason: undefined }
11791179

0 commit comments

Comments
 (0)