Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
ecmel committed Aug 1, 2024
1 parent 6522731 commit eccd188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/workspaceCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export async function getConnectionForServer(
}
const labels = nodes.filter((server) => server instanceof LabelNode);
for (const label of labels) {
const item = label.children.find((node) => {
const item = (label as LabelNode).children.find((node) => {
const name =
node instanceof InsightsNode
? node.details.alias
Expand Down

0 comments on commit eccd188

Please sign in to comment.