diff options
author | bobzel <zzzman@gmail.com> | 2021-03-17 18:32:51 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-17 18:32:51 -0400 |
commit | 6f4f0ffb9f4ab816cf6055c62afc6f79b8e4961f (patch) | |
tree | b1f238076751b2b2e969373403e9be8da29ccd05 /src/client/documents/Documents.ts | |
parent | 73dc79ddc41b56e2f36a5b2e442fe9c71648b118 (diff) |
fix Doc.MakeClone to deal wth links correctly again. fixed dashboard snapshot to either alias top-level documents, or clone everything.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 0a3865a13..8aa478cc1 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -780,8 +780,6 @@ export namespace Docs { LinkManager.Instance.addLink(doc); - source.doc.links === undefined && (Doc.GetProto(source.doc).links = ComputedField.MakeFunction("links(self)")); - target.doc.links === undefined && (Doc.GetProto(target.doc).links = ComputedField.MakeFunction("links(self)")); return doc; } |