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 4f4fe24 commit 3222512Copy full SHA for 3222512
src/views/Graph.vue
@@ -709,7 +709,7 @@ export default {
709
})
710
const disabled = isParent || isAncestor
711
for (const childFamily of node.node.descendants) {
712
- if (this.namespaces.map((obj) => obj.name).includes(childFamily)) {
+ if (this.namespaces.some((obj) => obj.name === childFamily)) {
713
const childTokens = this.workflows[0].tokens.clone({ cycle: `$namespace|${childFamily}` })
714
const childNode = this.cylcTree.$index[childTokens.id]
715
if (childNode.node.firstParent.id === node.id) {
0 commit comments