From cc31a40b0cb53cba7f51187cb6d68076c3f54c0f Mon Sep 17 00:00:00 2001
From: David Fischer <david@konst.fish>
Date: Tue, 19 Sep 2023 16:25:51 +0000
Subject: [PATCH] feat: support changes in system theme (#484)
---
docs/features/explorer.md | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/docs/features/explorer.md b/docs/features/explorer.md
index cb63e40..6f941b8 100644
--- a/docs/features/explorer.md
+++ b/docs/features/explorer.md
@@ -152,7 +152,7 @@
filterFn: (node) => {
// set containing names of everything you want to filter out
const omit = new Set(["authoring content", "tags", "hosting"])
- return omit.has(node.name.toLowerCase())
+ return !omit.has(node.name.toLowerCase())
},
})
```
--
Gitblit v1.10.0