Skip to content

Commit

Permalink
Enable canSelectMany for workspace tree view (#307)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexweininger authored Jun 10, 2022
1 parent 39da0f5 commit ecedb02
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-azureresourcegroups",
"displayName": "Azure Resources",
"description": "%azureResourceGroups.description%",
"version": "0.5.4-alpha.0",
"version": "0.5.4-alpha.1",
"publisher": "ms-azuretools",
"icon": "resources/resourceGroup.png",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export async function activateInternal(context: vscode.ExtensionContext, perfSta

const workspaceTreeItem = new WorkspaceTreeItem();
ext.workspaceTree = new AzExtTreeDataProvider(workspaceTreeItem, 'azureWorkspace.loadMore');
context.subscriptions.push(ext.workspaceTreeView = vscode.window.createTreeView('azureWorkspace', { treeDataProvider: ext.workspaceTree }));
context.subscriptions.push(ext.workspaceTreeView = vscode.window.createTreeView('azureWorkspace', { treeDataProvider: ext.workspaceTree, canSelectMany: true }));
ext.workspaceTreeView.description = localize('local', 'Local');

context.subscriptions.push(ext.activityLogTreeItem = new ActivityLogTreeItem());
Expand Down

0 comments on commit ecedb02

Please sign in to comment.