Skip to content

Commit

Permalink
fix wrong selection item
Browse files Browse the repository at this point in the history
  • Loading branch information
thewahome committed Dec 5, 2024
1 parent e63e99a commit 14c4475
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class WorkspaceTreeProvider implements vscode.TreeDataProvider<WorkspaceT

if (isPluginType(element.label)) {
return Object.keys(this.workspaceContent.plugins).map(pluginName =>
new WorkspaceTreeItem(pluginName, vscode.TreeItemCollapsibleState.None, 'item', PLUGINS, this.getProperties(pluginName, CLIENTS))
new WorkspaceTreeItem(pluginName, vscode.TreeItemCollapsibleState.None, 'item', PLUGINS, this.getProperties(pluginName, PLUGINS))
);
}
}
Expand Down

0 comments on commit 14c4475

Please sign in to comment.