From 12559bae4a69b54a86d7fc203236a7a650456711 Mon Sep 17 00:00:00 2001 From: Elio Struyf Date: Wed, 14 Dec 2022 10:17:47 +0100 Subject: [PATCH] #482 - Default content type description update --- CHANGELOG.md | 1 + src/helpers/ContentType.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fd5a246..d0bc354d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ ### 🐞 Fixes - [#470](https://github.com/estruyf/vscode-front-matter/issues/470): Fix `initialize project` dashboard description +- [#482](https://github.com/estruyf/vscode-front-matter/issues/482): Update the description when you want to overwrite the default content type description ## [8.2.0] - 2022-12-08 - [Release notes](https://beta.frontmatter.codes/updates/v8.2.0) diff --git a/src/helpers/ContentType.ts b/src/helpers/ContentType.ts index 351d8493..85153a81 100644 --- a/src/helpers/ContentType.ts +++ b/src/helpers/ContentType.ts @@ -121,7 +121,7 @@ export class ContentType { const override = await window.showQuickPick(["Yes", "No"], { title: "Override default content type", - placeHolder: "Do you want to override the default content type?", + placeHolder: "Do you want to overwrite the default content type configuration with the fields used in the current field?", ignoreFocusOut: true }); const overrideBool = override === "Yes";