#207 - fix quick picks

This commit is contained in:
Elio Struyf
2021-12-17 19:21:41 +01:00
parent c9f4c8f94e
commit e576b6e8a4
2 changed files with 6 additions and 1 deletions
+2 -1
View File
@@ -45,7 +45,8 @@ export class Questions {
let selectedFolder: string | undefined;
if (folders.length > 1) {
selectedFolder = await window.showQuickPick(folders.map(f => f.title), {
placeHolder: `Select where you want to create your content`
placeHolder: `Select where you want to create your content`,
ignoreFocusOut: true
});
} else {
selectedFolder = folders[0].title;