#480 - Updating add missing fields label

This commit is contained in:
Elio Struyf
2023-02-09 21:14:40 +01:00
parent 483cfcd761
commit cdeaa87321
2 changed files with 7 additions and 6 deletions
+1
View File
@@ -24,6 +24,7 @@
- [#469](https://github.com/estruyf/vscode-front-matter/issues/469): Fix for using the root folder as content folder
- [#470](https://github.com/estruyf/vscode-front-matter/issues/470): Fix `initialize project` dashboard description
- [#480](https://github.com/estruyf/vscode-front-matter/issues/480): Updated _add missing fields_ label to _add missing fields to content-type_
- [#482](https://github.com/estruyf/vscode-front-matter/issues/482): Update the description when you want to overwrite the default content type description
- [#488](https://github.com/estruyf/vscode-front-matter/issues/488): Fix an issue where the `.frontmatter` folder gets created before initializing the project
- [#493](https://github.com/estruyf/vscode-front-matter/issues/493): Fix an issue where a custom placeholder value is replaced by an `array` instead of a `string`
@@ -64,29 +64,29 @@ export const ContentTypeValidator: React.FunctionComponent<IContentTypeValidator
/>
</svg>
<span>Content type</span>
<span>Content-type</span>
</div>
</VsLabel>
<p className="inline_hint">
We noticed field differences between the content type and the front matter data.
We noticed field differences between the content-type and the front matter data.
</p>
<p className="inline_hint">
Would you like to create, update, or set the content type for this content?
Would you like to create, update, or set the content-type for this content?
</p>
<div className="hint__buttons">
<VSCodeButton appearance={`secondary`} onClick={generateContentType}>
Create content type
Create content-type
</VSCodeButton>
<VSCodeButton appearance={`secondary`} onClick={addMissingFields}>
Add missing fields
Add missing fields to content-type
</VSCodeButton>
<VSCodeButton appearance={`secondary`} onClick={setContentType}>
Set content type
Change content-type of the file
</VSCodeButton>
</div>