Merge branch 'jackyzha0:v4' into v4

This commit is contained in:
Komeno 2025-11-12 13:33:59 +09:00 committed by GitHub
commit ca61714888
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -162,7 +162,7 @@ You can access the tags of a file by `node.data.tags`.
Component.Explorer({
filterFn: (node) => {
// exclude files with the tag "explorerexclude"
return node.data.tags?.includes("explorerexclude") !== true
return node.data?.tags?.includes("explorerexclude") !== true
},
})
```