diff options
author | bobzel <zzzman@gmail.com> | 2020-08-05 17:28:15 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-05 17:28:15 -0400 |
commit | 50ddaaab31351ad277fbd2ebb4405a99a721a536 (patch) | |
tree | 9a41e3f3d15365807b95413ba1603f00c2433123 /src/client/DocServer.ts | |
parent | f9e34ffc8b21780d966a149e5ba4459c602a6eed (diff) | |
parent | d254d35d8d1fc10e9ca7ef5b9db06cd138b2d102 (diff) |
Merge branch 'master' into menu_restructure
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; } } }); |