File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
apps/sim/app/workspace/[workspaceId]/w/[workflowId] Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments