mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-07-06 18:01:24 +02:00
#19 - Fix for tags
This commit is contained in:
@@ -32,7 +32,7 @@ export class Article {
|
||||
if (article.data[matterProp]) {
|
||||
const propData = article.data[matterProp];
|
||||
if (propData && propData.length > 0) {
|
||||
options = [...propData].map(p => ({
|
||||
options = [...propData].filter(p => p).map(p => ({
|
||||
label: p,
|
||||
picked: true
|
||||
} as vscode.QuickPickItem));
|
||||
|
||||
Reference in New Issue
Block a user