diff options
author | bobzel <zzzman@gmail.com> | 2022-06-03 08:44:03 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-06-03 08:44:03 -0400 |
commit | 19705d01102fbb594ea5df18bb980bd2dfec93d4 (patch) | |
tree | 7714bb19d07dc0af2c3cd536e11326eda323ea35 /src/client/util/CurrentUserUtils.ts | |
parent | 3e75896a0c6e59036a6b9467521f4fe68fdda1a0 (diff) |
fixed presentation as list index display
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 c4e2afd08..2ed6c3cbe 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -930,7 +930,7 @@ export class CurrentUserUtils { sharedDocs.childContextMenuIcons = new List<string>(["user-plus",]); } - doc.mySharedDocs = new PrefetchProxy(sharedDocs); + doc.mySharedDocs = new PrefetchProxy(sharedDocs as Doc); } } |