diff options
author | bobzel <zzzman@gmail.com> | 2020-08-10 10:45:37 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-10 10:45:37 -0400 |
commit | 7173a28dae301a7733bcc9b8111016c737c0f5f4 (patch) | |
tree | da5765d1d53a0f2f44cf6d1fb8f6db0bb0eadff5 /src/client/DocServer.ts | |
parent | 01ebdb0db657f4c9de7959d2810548993a26e675 (diff) | |
parent | 03ae3477dac354eff9178dac701ee40e394434c9 (diff) |
Merge branch 'master' into ink_edits
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; } } }); |