From 3580591c48add253e4badbcb16aede0f5ef9c5c7 Mon Sep 17 00:00:00 2001 From: dihwang Date: Thu, 9 Apr 2026 10:40:43 +0900 Subject: [PATCH] =?UTF-8?q?quartz.loayout.ts=20=EA=B0=80=20=EB=AC=B8?= =?UTF-8?q?=EC=A0=9C=EC=98=80=EB=8D=98=EA=B2=83=EC=9D=B8=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- quartz.layout.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quartz.layout.ts b/quartz.layout.ts index c7cb463..59f9a28 100644 --- a/quartz.layout.ts +++ b/quartz.layout.ts @@ -41,7 +41,7 @@ export const defaultContentPageLayout: PageLayout = { Component.Explorer({ filterFn: (node) => { const omit = new Set(["extra", "note", "template", "volume"]) - return !omit.has(node.name.toLowerCase()) + return !omit.has((node.name || "").toLowerCase()) }, }), ], @@ -70,7 +70,7 @@ export const defaultListPageLayout: PageLayout = { Component.Explorer({ filterFn: (node) => { const omit = new Set(["extra", "note", "template", "volume"]) - return !omit.has(node.name.toLowerCase()) + return !omit.has((node.name || "").toLowerCase()) }, }), ],