diff options
author | bobzel <zzzman@gmail.com> | 2019-02-05 22:37:46 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2019-02-05 22:37:46 -0500 |
commit | 4ac7a62d813738b0047caefbcf40d3063ec9e6c1 (patch) | |
tree | b26d6d72f986b05cc8595300efb75af9d8b2183d /src/views/collections/CollectionFreeFormView.tsx | |
parent | 26af9562cc515627be4be8759b70ebfbab8bb83c (diff) |
checkpoint
Diffstat (limited to 'src/views/collections/CollectionFreeFormView.tsx')
-rw-r--r-- | src/views/collections/CollectionFreeFormView.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/views/collections/CollectionFreeFormView.tsx b/src/views/collections/CollectionFreeFormView.tsx index 2c10c8056..ad470f9e2 100644 --- a/src/views/collections/CollectionFreeFormView.tsx +++ b/src/views/collections/CollectionFreeFormView.tsx @@ -189,6 +189,7 @@ export class CollectionFreeFormView extends CollectionViewBase { const panx: number = Document.GetNumberField(KeyStore.PanX, 0); const pany: number = Document.GetNumberField(KeyStore.PanY, 0); const currScale: number = Document.GetNumberField(KeyStore.Scale, 1); + const data = Document.GetField(KeyStore.Data); return ( <div className="border" style={{ @@ -205,7 +206,7 @@ export class CollectionFreeFormView extends CollectionViewBase { <div className="node-container" ref={this._nodeContainerRef}> {value.map(doc => { - return (<CollectionFreeFormDocumentView key={doc.Id} ContainingCollectionView={this} Document={doc} DocumentView={undefined} />); + return (<CollectionFreeFormDocumentView key={doc.Id} ContainingCollectionView={this} Document={doc} DocumentView={undefined} Data={data} />); })} </div> </div> |