Fix help links in remote explorer

Fixes https://github.com/microsoft/vscode-internalbacklog/issues/885
This commit is contained in:
Alex Ross 2019-10-25 12:09:23 +02:00
parent 256cf1500d
commit 47e822b77c

View file

@ -172,7 +172,7 @@ class HelpItem implements IHelpItem {
const action = await this.quickInputService.pick(actions, { placeHolder: nls.localize('pickRemoteExtension', "Select url to open") });
if (action) {
await this.openerService.open(URI.parse(action.label));
await this.openerService.open(URI.parse(action.description));
}
} else {
await this.openerService.open(URI.parse(this.values[0].url));