diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-06-26 23:04:04 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-06-26 23:04:04 -0400 |
commit | 9178f360cbc3de7d836387a38e4e1ce6b7c77710 (patch) | |
tree | 04786b7ea2193b15740b1ff485e5c673d0c19cf1 /src/new_fields/Doc.ts | |
parent | 3605690fb0778ab5a5c8f56c8a3e0c65206a9cb2 (diff) | |
parent | fcba28b1f826da50729e3a005f5fcac7a3c4316c (diff) |
Merge branch 'fawn_linking' into templatesMac
Diffstat (limited to 'src/new_fields/Doc.ts')
-rw-r--r-- | src/new_fields/Doc.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/new_fields/Doc.ts b/src/new_fields/Doc.ts index c1256a6a3..bf98c2e6c 100644 --- a/src/new_fields/Doc.ts +++ b/src/new_fields/Doc.ts @@ -8,6 +8,8 @@ import { listSpec } from "./Schema"; import { ObjectField } from "./ObjectField"; import { RefField, FieldId } from "./RefField"; import { ToScriptString, SelfProxy, Parent, OnUpdate, Self, HandleUpdate, Update, Id } from "./FieldSymbols"; +import { LinkManager } from "../client/util/LinkManager"; +import { DocUtils } from "../client/documents/Documents"; export namespace Field { export function toScriptString(field: Field): string { @@ -298,6 +300,7 @@ export namespace Doc { } } }); + return copy; } |