From eccd188760430e0da166bda59c8d1aeb9df7c133 Mon Sep 17 00:00:00 2001 From: ecmel Date: Thu, 1 Aug 2024 12:59:54 +0300 Subject: [PATCH] fixed test --- src/commands/workspaceCommand.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/workspaceCommand.ts b/src/commands/workspaceCommand.ts index eefe0649..4b739f94 100644 --- a/src/commands/workspaceCommand.ts +++ b/src/commands/workspaceCommand.ts @@ -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