From 055733658b9c169b6078e0a97c118a3a03e66ddd Mon Sep 17 00:00:00 2001 From: Elio Struyf Date: Wed, 12 Apr 2023 19:30:24 +0200 Subject: [PATCH] #572 - fix link --- CHANGELOG.md | 1 + src/dashboardWebView/components/SnippetsView/NewForm.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86abcddf..9f52999a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ - [#564](https://github.com/estruyf/vscode-front-matter/issues/564): Fix to only pass strings to the taxonomy dashboard - [#567](https://github.com/estruyf/vscode-front-matter/issues/567): Fix taxonomy filters that are incorrectly positioned +- [#572](https://github.com/estruyf/vscode-front-matter/issues/572): Fix the media snippet placeholder link ## [8.4.0] - 2023-04-03 - [Release notes](https://beta.frontmatter.codes/updates/v8.4.0) diff --git a/src/dashboardWebView/components/SnippetsView/NewForm.tsx b/src/dashboardWebView/components/SnippetsView/NewForm.tsx index 991dc9c5..32a41d25 100644 --- a/src/dashboardWebView/components/SnippetsView/NewForm.tsx +++ b/src/dashboardWebView/components/SnippetsView/NewForm.tsx @@ -31,7 +31,7 @@ export const NewForm: React.FunctionComponent = ({ const openLink = () => { Messenger.send( GeneralCommands.toVSCode.openLink, - 'https://frontmatter.codes/docs/markdown#placeholders' + 'https://frontmatter.codes/docs/snippets#placeholders' ); };