Skip to content

Commit

Permalink
Merge pull request #150484 from microsoft/dev/joyceerhl/remote-help
Browse files Browse the repository at this point in the history
Don't autoselect a remote help item if there is more than one valid option
  • Loading branch information
joyceerhl committed May 30, 2022
2 parents 956c028 + 944c736 commit ed1bc03
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vs/workbench/contrib/remote/browser/remote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,9 @@ abstract class HelpItemBase implements IHelpItem {
await this.takeAction(action.extensionDescription, action.description);
}
}
} else {
await this.takeAction(this.values[0].extensionDescription, await this.values[0].url);
}
await this.takeAction(this.values[0].extensionDescription, await this.values[0].url);

}

Expand Down

0 comments on commit ed1bc03

Please sign in to comment.