diff --git a/CHANGELOG.md b/CHANGELOG.md index c4ff9f8f..b9a7f28e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ - Light color theme enhancements to media cards - Light color theme enhancements to folder cards +- Added collapse and dashboard button to the view title of the FM Panel - [#272](https://github.com/estruyf/vscode-front-matter/issues/272): New slide over panel for showing details of media files - [#276](https://github.com/estruyf/vscode-front-matter/issues/276): Add a Front Matter walkthrough for VS Code - [#270](https://github.com/estruyf/vscode-front-matter/issues/270): Only show media files from public folder if `pageBundle` is not enabled on any of the content types diff --git a/package.json b/package.json index d82094c6..bd5158fb 100644 --- a/package.json +++ b/package.json @@ -1517,7 +1517,13 @@ "view/title": [ { "command": "frontMatter.collapseSections", - "group": "frontmatter-explorer" + "group": "navigation@0", + "when": "view == frontMatter.explorer" + }, + { + "command": "frontMatter.dashboard", + "group": "navigation@1", + "when": "view == frontMatter.explorer" } ] },