Skip to content

Commit 19d46d2

Browse files
fbricondatho7561
authored andcommitted
Fix recommendation popup
Signed-off-by: Fred Bricon <fbricon@gmail.com>
1 parent 3590b68 commit 19d46d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/recommendation/handlerImpl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class HandlerImpl implements IHandler {
5252
return;
5353
}
5454

55-
const actions: Array<string> = Object.keys(UserChoice);
55+
const actions: Array<string> = Object.values(UserChoice);
5656
const answer = await vscode.window.showInformationMessage(message, ...actions);
5757
if (answer === UserChoice.install) {
5858
await installExtensionCmdHandler(extName, extName);

0 commit comments

Comments
 (0)