diff options
author | bobzel <zzzman@gmail.com> | 2020-08-05 17:15:02 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-05 17:15:02 -0400 |
commit | d254d35d8d1fc10e9ca7ef5b9db06cd138b2d102 (patch) | |
tree | f006424685a8971cc430a1eb9afb4483465a5d64 /src/client/DocServer.ts | |
parent | a9fbb81375d3e97b808d2cb90e68c9716ee916b7 (diff) | |
parent | 201da4ecf5c91595dc1c7fb51e360bb75af613f8 (diff) |
Merge branch 'schema_search'
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; } } }); |