aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents/Documents.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-02-09 03:03:48 -0500
committerbobzel <zzzman@gmail.com>2021-02-09 03:03:48 -0500
commit0f03183b9a2374ed3198d2b9ec8348fa819b11b4 (patch)
treec0acfb9869f3ea768f2574f3eda1592fa3a30ad4 /src/client/documents/Documents.ts
parent0e5891eab7f53697b764b7e9da5163db0351a0a2 (diff)
fixed drawing link lines between everything except textanchor - to - textanchor.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r--src/client/documents/Documents.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts
index 7d6db06d5..de4a8f43c 100644
--- a/src/client/documents/Documents.ts
+++ b/src/client/documents/Documents.ts
@@ -789,7 +789,7 @@ export namespace Docs {
}
export function TextanchorDocument(options: DocumentOptions = {}) {
- return InstanceFromProto(Prototypes.get(DocumentType.TEXTANCHOR), document, { targetDropAction: "move", ...options });
+ return InstanceFromProto(Prototypes.get(DocumentType.TEXTANCHOR), undefined, { targetDropAction: "move", ...options });
}
export function FreeformDocument(documents: Array<Doc>, options: DocumentOptions, id?: string) {