diff --git a/.eslintrc.json b/.eslintrc.json index 829987fd..6d150389 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -12,6 +12,7 @@ "no-throw-literal": "error", "no-unused-expressions": "error", "curly": "error", - "class-methods-use-this": "warn" + "class-methods-use-this": "warn", + "no-console": "warn" } } diff --git a/CHANGELOG.md b/CHANGELOG.md index a2c7b903..cc640f40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [10.4.1] - 2024-09-27 + +- [#855](https://github.com/estruyf/vscode-front-matter/issues/855): Fix in panel sections + ## [10.4.0] - 2024-09-25 - [Release notes](https://beta.frontmatter.codes/updates/v10.4.0) ### ✨ New features diff --git a/src/panelWebView/components/Collapsible.tsx b/src/panelWebView/components/Collapsible.tsx index 5477e1d6..c2a9aaa1 100644 --- a/src/panelWebView/components/Collapsible.tsx +++ b/src/panelWebView/components/Collapsible.tsx @@ -27,7 +27,6 @@ const Collapsible: React.FunctionComponent = ({ } const prevState: any = Messenger.getState(); - console.log(collapseKey, prevState[collapseKey]); if ( !prevState ||