Route diagram: error node highlighting #55
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Context
The diagram node rendering supports error styling (red glow, red border) via
nodeStyles.ts, but theRouteDiagramSvgcurrently passesisError={false}for all nodes. Error status from the execution's processor tree is not propagated to the diagram overlay.What's needed
RouteDiagramSvg, determine error status per node fromuseExecutionOverlaydatadiagramNodeIds into anerrorNodes: Set<string>in the overlay hookisError={errorNodes.has(nodeId)}to eachDiagramNodeAcceptance criteria