Add file tree to menu

This commit is contained in:
2026-01-29 23:41:30 +01:00
parent 2331d2b969
commit 5ce6b0c417
13 changed files with 199 additions and 285 deletions

View File

@@ -59,6 +59,10 @@ export class FSNode {
(this.password_permissions !== undefined && Object.keys(this.password_permissions).length > 0)
}
is_hidden = (): boolean => {
return this.name.startsWith(".")
}
download = () => {
const a = document.createElement("a")