We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78ad78f commit d370cfaCopy full SHA for d370cfa
src/main/frontend/pipeline-graph-view/pipeline-graph/main/support/nodes.tsx
@@ -52,7 +52,10 @@ export function Node({ node }: NodeProps) {
52
groupChildren.push(<title>{title}</title>);
53
}
54
55
- const clickable = !node.isPlaceholder && node.stage?.state !== "skipped";
+ const clickable =
56
+ !node.isPlaceholder &&
57
+ node.stage?.state !== "skipped" &&
58
+ !node.stage.skeleton;
59
60
// Most of the nodes are in shared code, so they're rendered at 0,0. We transform with a <g> to position them
61
const groupProps = {
0 commit comments