Skip to content

Commit 788d024

Browse files
authored
Merge pull request #856 from estruyf/beta
10.4.1
2 parents 13e58d2 + 017a2d7 commit 788d024

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"no-throw-literal": "error",
1313
"no-unused-expressions": "error",
1414
"curly": "error",
15-
"class-methods-use-this": "warn"
15+
"class-methods-use-this": "warn",
16+
"no-console": "warn"
1617
}
1718
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [10.4.1] - 2024-09-27
4+
5+
- [#855](https://github.com/estruyf/vscode-front-matter/issues/855): Fix in panel sections
6+
37
## [10.4.0] - 2024-09-25 - [Release notes](https://beta.frontmatter.codes/updates/v10.4.0)
48

59
### ✨ New features

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Front Matter CMS",
44
"description": "Front Matter is a CMS that runs within Visual Studio Code. It gives you the power and control of a full-blown CMS while also providing you the flexibility and speed of the static site generator of your choice like: Hugo, Jekyll, Docusaurus, NextJs, Gatsby, and many more...",
55
"icon": "assets/frontmatter-teal-128x128.png",
6-
"version": "10.4.0",
6+
"version": "10.4.1",
77
"preview": false,
88
"publisher": "eliostruyf",
99
"galleryBanner": {

src/panelWebView/components/Collapsible.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const Collapsible: React.FunctionComponent<ICollapsibleProps> = ({
2727
}
2828

2929
const prevState: any = Messenger.getState();
30-
console.log(collapseKey, prevState[collapseKey]);
3130

3231
if (
3332
!prevState ||

0 commit comments

Comments
 (0)