From 0f6693538507c05c31229f45871294f2fecd9c8e Mon Sep 17 00:00:00 2001 From: Elio Struyf Date: Wed, 6 Apr 2022 12:03:28 +0200 Subject: [PATCH] #303 - updated card tags setting --- package.json | 2 +- src/constants/settings.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 5850733f..fb9ac6cc 100644 --- a/package.json +++ b/package.json @@ -398,7 +398,7 @@ "markdownDescription": "Specify if you want to open the dashboard when you start VS Code. [Check in the docs](https://frontmatter.codes/docs/settings#frontmatter.dashboard.openonstart)", "scope": "Dashboard" }, - "frontMatter.dashboard.contentTags": { + "frontMatter.dashboard.content.cardTags": { "type": "string", "default": "tags", "markdownDescription": "Specify the name of the metadata field that will be used to show the tags on the content card. When empty or null, it will hide the tags from the card. [Check in the docs](https://frontmatter.codes/docs/settings#frontmatter.dashboard.contenttags)", diff --git a/src/constants/settings.ts b/src/constants/settings.ts index 6f1303de..bc3f303d 100644 --- a/src/constants/settings.ts +++ b/src/constants/settings.ts @@ -62,7 +62,7 @@ export const SETTING_MEDIA_SUPPORTED_MIMETYPES = "media.supportedMimeTypes"; export const SETTING_DASHBOARD_OPENONSTART = "dashboard.openOnStart"; export const SETTING_DASHBOARD_MEDIA_SNIPPET = "dashboard.mediaSnippet"; -export const SETTING_DASHBOARD_CONTENT_TAGS = "dashboard.contentTags"; +export const SETTING_DASHBOARD_CONTENT_TAGS = "dashboard.content.cardTags"; export const SETTING_DATA_FILES = "data.files"; export const SETTING_DATA_FOLDERS = "data.folders";