diff options
author | tschicke-brown <tyler_schicke@brown.edu> | 2019-01-20 15:09:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-20 15:09:32 -0500 |
commit | 6cf622dda54e5b1793138c0492d71b574a6e8d75 (patch) | |
tree | 22382a06e682a1d86be144382209fac2183165c9 /src/documents/Documents.ts | |
parent | 957bb8a462d233b8064ad1a957f2525dbd5995bc (diff) | |
parent | 08e2d1fd54824a1e8638a66ff031253ae72ab77b (diff) |
Merge pull request #2 from browngraphicslab/move_doc_get_out_the_way
Move doc get out the way
Diffstat (limited to 'src/documents/Documents.ts')
-rw-r--r-- | src/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/documents/Documents.ts b/src/documents/Documents.ts index beee44bee..cc08f4123 100644 --- a/src/documents/Documents.ts +++ b/src/documents/Documents.ts @@ -77,7 +77,7 @@ export namespace Documents { collectionProto.SetField(KeyStore.Y, new NumberField(0)); collectionProto.SetField(KeyStore.Width, new NumberField(300)); collectionProto.SetField(KeyStore.Height, new NumberField(300)); - collectionProto.SetField(KeyStore.Layout, new TextField('<CollectionFreeFormView doc={doc} fieldKey={DataKey}/>')); + collectionProto.SetField(KeyStore.Layout, new TextField('<CollectionFreeFormView doc={doc} fieldKey={DataKey} isSelected={isSelected}/>')); collectionProto.SetField(KeyStore.LayoutKeys, new ListField([KeyStore.Data])); } return collectionProto; |