diff --git a/extensions/typescript-language-features/src/typescriptServiceClient.ts b/extensions/typescript-language-features/src/typescriptServiceClient.ts index 5d8ea7f1420..c77c86f7c9a 100644 --- a/extensions/typescript-language-features/src/typescriptServiceClient.ts +++ b/extensions/typescript-language-features/src/typescriptServiceClient.ts @@ -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; });