Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
wkramer committed Apr 16, 2024
1 parent 1bf01c6 commit bdebfdb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/views/TopologyDisplayView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -409,12 +409,12 @@ watchEffect(() => {
// Check if the active node is a leaf.
const node = topologyMap.value.get(activeNodeId)
if (node === undefined) {
filterIds.value = []
return
}
if (node.filterIds) {
filterIds.value = node.filterIds
}
filterIds.value = []
return
}
if (node.filterIds) {
filterIds.value = node.filterIds
}
topologyNode.value = node
if (showLeafsAsButton.value && Array.isArray(props.nodeId)) {
Expand Down

0 comments on commit bdebfdb

Please sign in to comment.