Add configurable theme colours to filesystem

This commit is contained in:
2024-09-05 14:58:26 +02:00
parent 41a157ae9e
commit 04efcb6505
9 changed files with 81 additions and 18 deletions

View File

@@ -149,6 +149,11 @@ export class FSNavigator {
cached_siblings: Array<FSNode> | null = null
async get_siblings() {
// If this node is a filesystem root then there are no siblings
if (this.path.length < 2) {
return []
}
// Check if we already have siblings cached
if (
this.cached_siblings === null ||