File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,10 @@ export const defaultContentPageLayout: PageLayout = {
26
26
Component . MobileOnly ( Component . Spacer ( ) ) ,
27
27
Component . Search ( ) ,
28
28
Component . Darkmode ( ) ,
29
- Component . DesktopOnly ( Component . Explorer ( { folderClickBehavior : "link" } ) ) ,
29
+ Component . DesktopOnly ( Component . Explorer ( {
30
+ folderClickBehavior : "link" ,
31
+ filterFn : ( node ) => node . name !== "Templates" ,
32
+ } ) ) ,
30
33
] ,
31
34
right : [
32
35
Component . Graph ( ) ,
@@ -44,7 +47,10 @@ export const defaultListPageLayout: PageLayout = {
44
47
Component . MobileOnly ( Component . Spacer ( ) ) ,
45
48
Component . Search ( ) ,
46
49
Component . Darkmode ( ) ,
47
- Component . DesktopOnly ( Component . Explorer ( { folderClickBehavior : "link" } ) ) ,
50
+ Component . DesktopOnly ( Component . Explorer ( {
51
+ folderClickBehavior : "link" ,
52
+ filterFn : ( node ) => node . name !== "Templates" ,
53
+ } ) ) ,
48
54
] ,
49
55
right : [
50
56
Component . Graph ( ) ,
You can’t perform that action at this time.
0 commit comments