Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit 8428d72

Browse files
committed
fix: tekton Step nodes show with hashed background
Fixes #4114
1 parent 23121b2 commit 8428d72

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

plugins/plugin-kubectl/tekton/src/lib/tekton2graph.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ export default async function(jsons: KubeResource[], filepath?: string, run?: Pi
340340
height: defaultHeight,
341341
nChildren: 0,
342342
nParents: 0,
343-
deployed: false,
343+
deployed: true,
344344
visited: step.visitedIdx !== undefined ? [step.visitedIdx] : undefined,
345345
type: 'Tekton Step',
346346
tooltip: `<strong>Image</strong>: ${step.image}`,

plugins/plugin-kubectl/tekton/src/view/flow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default async (
5555
layoutOptions: {
5656
'elk.separateConnectedComponents': false,
5757
'elk.spacing.nodeNode': 10,
58-
'elk.padding': '[top=7.5,left=5,bottom=7.5,right=5]',
58+
'elk.padding': '[top=10,left=7.5,bottom=10,right=7.5]',
5959
hierarchyHandling: 'INCLUDE_CHILDREN' // since we have hierarhical edges, i.e. that cross-cut subgraphs
6060
}
6161
})

plugins/plugin-wskflow/web/css/static/wskflow.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ body[kui-theme-style="dark"] #wskflowSVG .node.leaf[data-status="success"] .atom
201201
-webkit-font-smoothing: antialiased;
202202
}
203203
#wskflowSVG .node.leaf .atom {
204-
stroke: var(--color-base05);
205-
stroke-width: 0.5; /* 2 with vector-effects: non-scaling stroke support */
204+
stroke: var(--color-base04);
205+
stroke-width: 0.25;
206206
}
207207
#wskflowSVG .action[data-deployed="deployed"] .atom {
208208
fill: var(--color-ui-03) !important;

0 commit comments

Comments
 (0)