Skip to content

Commit

Permalink
Do not show "Select at workspace level" option if only one workspace …
Browse files Browse the repository at this point in the history
…folder is opened (#21689)

Closes #21220
  • Loading branch information
Kartik Raj committed Jul 25, 2023
1 parent f536b74 commit 8b9bca1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export abstract class BaseInterpreterSelectorCommand implements IExtensionSingle
},
];
}
if (!this.workspaceService.workspaceFile && workspaceFolders.length === 1) {
if (workspaceFolders.length === 1) {
return [
{
folderUri: workspaceFolders[0].uri,
Expand Down

0 comments on commit 8b9bca1

Please sign in to comment.