Merge branch 'main' into dev

This commit is contained in:
Elio Struyf
2022-06-11 20:04:31 +02:00
2 changed files with 8 additions and 1 deletions
+7
View File
@@ -18,6 +18,13 @@
- [#348](https://github.com/estruyf/vscode-front-matter/issues/348): Fix media dashboard breadcrumb when multiple page folders are in use
## [7.3.3] - 2022-06-11
### 🐞 Fixes
- Card render when taxonomy is not an array value
- Double pages on contents dashboard
## [7.3.2] - 2022-06-01
### 🐞 Fixes
+1 -1
View File
@@ -170,7 +170,7 @@ export class PagesListener extends BaseListener {
try {
const page = this.processPageContent(file.filePath, file.mtime, file.fileName, folder.title);
if (page) {
if (page && !pages.find(p => p.fmFilePath === page.fmFilePath)) {
pages.push(page);
}