Fix report issue command

For #85021
This commit is contained in:
Matt Bierner
2019-11-18 10:29:25 -08:00
parent d58744ca8c
commit 942287eb44

View File

@@ -552,7 +552,7 @@ export default class TypeScriptServiceClient extends Disposable implements IType
if (prompt) {
prompt.then(item => {
if (item && item.id === MessageAction.reportIssue) {
return vscode.commands.executeCommand('workbench.action.reportIssues');
return vscode.commands.executeCommand('workbench.action.openIssueReporter');
}
return undefined;
});