Skip to content

Commit d370cfa

Browse files
committed
Update nodes.tsx
1 parent 78ad78f commit d370cfa

File tree

1 file changed

+4
-1
lines changed
  • src/main/frontend/pipeline-graph-view/pipeline-graph/main/support

1 file changed

+4
-1
lines changed

src/main/frontend/pipeline-graph-view/pipeline-graph/main/support/nodes.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ export function Node({ node }: NodeProps) {
5252
groupChildren.push(<title>{title}</title>);
5353
}
5454

55-
const clickable = !node.isPlaceholder && node.stage?.state !== "skipped";
55+
const clickable =
56+
!node.isPlaceholder &&
57+
node.stage?.state !== "skipped" &&
58+
!node.stage.skeleton;
5659

5760
// Most of the nodes are in shared code, so they're rendered at 0,0. We transform with a <g> to position them
5861
const groupProps = {

0 commit comments

Comments
 (0)