diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-06-15 23:53:10 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-06-15 23:53:10 -0400 |
commit | aee958a85c61927970e55ede004c91a0251a9405 (patch) | |
tree | 4ff36ae426c81c86150e33a5214ad6b5c6021d97 /src/fields/Doc.ts | |
parent | 163e1f579d5a6b111645953b12e665839694585c (diff) |
fixed warnings. fixed linking in textboxes, particularly with <key>::<doc> syntax
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r-- | src/fields/Doc.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index b205a4a10..70aa2d60b 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -117,7 +117,7 @@ export function fetchProto(doc: Doc) { } if (doc.proto instanceof Promise) { - doc.proto.then(proto => fetchProto(proto)); + doc.proto.then(fetchProto); return doc.proto; } } |