#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
+4
View File
@@ -10,6 +10,10 @@
- [#205](https://github.com/estruyf/vscode-front-matter/issues/205): Define a logging level setting
- [#206](https://github.com/estruyf/vscode-front-matter/issues/206): Add front matter issues to the diagnostic tab
### 🐞 Fixes
- [#207](https://github.com/estruyf/vscode-front-matter/issues/207): Fix the quick picks for content creation
## [5.7.0] - 2021-12-07 - [Release Notes](https://beta.frontmatter.codes/updates/v5.7.0)
### 🎨 Enhancements
+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;