From 7be47742a6dc86f22d148ca9d304f7a9eea318cf Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 31 Jan 2025 11:46:45 +0000
Subject: [PATCH] chore(deps): bump the production-dependencies group across 1 directory with 3 updates (#1744)
---
quartz/components/pages/FolderContent.tsx | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/quartz/components/pages/FolderContent.tsx b/quartz/components/pages/FolderContent.tsx
index 7a49d49..593073b 100644
--- a/quartz/components/pages/FolderContent.tsx
+++ b/quartz/components/pages/FolderContent.tsx
@@ -71,7 +71,7 @@
})
const cssClasses: string[] = fileData.frontmatter?.cssclasses ?? []
- const classes = ["popover-hint", ...cssClasses].join(" ")
+ const classes = cssClasses.join(" ")
const listProps = {
...props,
sort: options.sort,
@@ -84,8 +84,8 @@
: htmlToJsx(fileData.filePath!, tree)
return (
- <div class={classes}>
- <article>{content}</article>
+ <div class="popover-hint">
+ <article class={classes}>{content}</article>
<div class="page-listing">
{options.showFolderCount && (
<p>
--
Gitblit v1.10.0