diff options
author | bobzel <zzzman@gmail.com> | 2020-08-05 22:34:21 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-05 22:34:21 -0400 |
commit | 1a9750cb8c2102cf425137f47f08fb6f85cbdfa2 (patch) | |
tree | daca75216d265e69fc196813f5b3fc00f95d8d0c /src/client/DocServer.ts | |
parent | cc905d329c88d7bdf9b7324a4f02ab92906ba7c8 (diff) | |
parent | af3e6b316f30c8154462145d15c38a2e48b53cdc (diff) |
Merge branch 'master' into presentation_updates
Diffstat (limited to 'src/client/DocServer.ts')
-rw-r--r-- | src/client/DocServer.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/DocServer.ts b/src/client/DocServer.ts index 6fa8cf909..2fe3e9778 100644 --- a/src/client/DocServer.ts +++ b/src/client/DocServer.ts @@ -372,6 +372,9 @@ export namespace DocServer { } else if (cached instanceof Promise) { proms.push(cached as any); } + } else if (field) { + proms.push(_cache[field.id] as any); + fieldMap[field.id] = field; } } }); |