diff options
author | bobzel <zzzman@gmail.com> | 2021-03-14 12:41:17 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-14 12:41:17 -0400 |
commit | 5fe63360364cd85b33ca797c0152f831cbbb0104 (patch) | |
tree | a49e1bb7672f3cd889cd867e18a44089af6d6e37 /src/client/util/CurrentUserUtils.ts | |
parent | c5ea9a228d97974250194cbe41e0f356c3c3906f (diff) |
fixed warnings from missing keys. change file orphans to Unfiled
Diffstat (limited to 'src/client/util/CurrentUserUtils.ts')
-rw-r--r-- | src/client/util/CurrentUserUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts index 894f306c9..9dda90353 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -772,7 +772,7 @@ export class CurrentUserUtils { static async setupFilesystem(doc: Doc) { await doc.myFilesystem; if (doc.myFilesystem === undefined) { - doc.myFileOrphans = Docs.Create.TreeDocument([], { title: "file orphans", _stayInCollection: true, system: true, isFolder: true }); + doc.myFileOrphans = Docs.Create.TreeDocument([], { title: "Unfiled", _stayInCollection: true, system: true, isFolder: true }); doc.myFileRoot = Docs.Create.TreeDocument([], { title: "file root", _stayInCollection: true, system: true, isFolder: true }); doc.myFilesystem = new PrefetchProxy(Docs.Create.TreeDocument([doc.myFileRoot as Doc, doc.myFileOrphans as Doc], { title: "My Documents", _height: 100, |