From 7264bd58a3fe5dbb5049eb90a8b2b9cc894bdb90 Mon Sep 17 00:00:00 2001 From: MihailKovachev Date: Tue, 11 Feb 2025 12:27:03 +0200 Subject: [PATCH] Fixed folder clicking --- patches/quartz.layout.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/quartz.layout.ts b/patches/quartz.layout.ts index 063504e..7d884e1 100644 --- a/patches/quartz.layout.ts +++ b/patches/quartz.layout.ts @@ -44,7 +44,7 @@ export const defaultContentPageLayout: PageLayout = { Component.MobileOnly(Component.Spacer()), Component.Search(), Component.Darkmode(), - Component.Explorer() + Component.Explorer({ folderClickBehavior: "link"}) ], right: [ Component.Graph(), @@ -61,7 +61,7 @@ export const defaultListPageLayout: PageLayout = { Component.MobileOnly(Component.Spacer()), Component.Search(), Component.Darkmode(), - Component.Explorer(), + Component.Explorer({ folderClickBehavior: "link"}), ], right: [], }