We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3590b68 commit 19d46d2Copy full SHA for 19d46d2
src/recommendation/handlerImpl.ts
@@ -52,7 +52,7 @@ export class HandlerImpl implements IHandler {
52
return;
53
}
54
55
- const actions: Array<string> = Object.keys(UserChoice);
+ const actions: Array<string> = Object.values(UserChoice);
56
const answer = await vscode.window.showInformationMessage(message, ...actions);
57
if (answer === UserChoice.install) {
58
await installExtensionCmdHandler(extName, extName);
0 commit comments