File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,13 +16,7 @@ function validateGraph(graph: WorkflowGraph | undefined): graph is WorkflowGraph
1616
1717async function persistResult ( engine : WorkflowEngine , result : WorkflowRunResult ) {
1818 try {
19- // Backward compatibility: fall back to reading the private graph field if the engine
20- // instance doesn't yet expose getGraph (e.g., cached build).
21- const engineAny = engine as WorkflowEngine & { getGraph ?: ( ) => WorkflowGraph } ;
22- const workflow =
23- typeof engineAny . getGraph === 'function'
24- ? engineAny . getGraph ( )
25- : ( Reflect . get ( engine , 'graph' ) as WorkflowGraph | undefined ) ;
19+ const workflow = getEngineWorkflow ( engine ) ;
2620
2721 if ( ! workflow ) {
2822 throw new Error ( 'Workflow graph not available on engine instance' ) ;
Original file line number Diff line number Diff line change @@ -486,7 +486,7 @@ path.connection-line.active {
486486 align-items : center;
487487 justify-content : center;
488488 padding : 0 ;
489- font-size : 10 px ;
489+ font-size : var ( --Fonts-Body-Default-xxs ) ;
490490 font-weight : 700 ;
491491 color : var (--Colors-Primary-Medium );
492492 line-height : 1 ;
You can’t perform that action at this time.
0 commit comments