diff options
author | Fawn <fangrui_tong@brown.edu> | 2019-06-11 18:17:28 -0400 |
---|---|---|
committer | Fawn <fangrui_tong@brown.edu> | 2019-06-11 18:17:28 -0400 |
commit | 2c3b54d6e07c37a4f5fd52a49d6d60e7a8e5d2d2 (patch) | |
tree | 26eb8d1a5575a409b5627be07d2c1a24ffc352c7 /src/client/documents/Documents.ts | |
parent | 074b4b2a3246ae86fda334629d40540dd2bbf633 (diff) |
metadata types can be assigned to groups of links
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 731490d97..9f1501265 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -91,7 +91,7 @@ export namespace DocUtils { UndoManager.RunInBatch(() => { let groupDoc = Docs.TextDocument(); groupDoc.proto!.type = "*"; - groupDoc.proto!.metadata = new List<Doc>([]); + groupDoc.proto!.metadata = Docs.TextDocument(); let linkDoc = Docs.TextDocument({ width: 100, height: 30, borderRounding: -1 }); //let linkDoc = new Doc; |