aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2019-09-16 09:49:25 -0400
committerbob <bcz@cs.brown.edu>2019-09-16 09:49:25 -0400
commitf428ac2621f123661a937405764058f27a9feefd (patch)
tree05f0282cd30c397f5594e7710c6d6f5bdd129c08 /src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
parent30ebba4ee0f8c957609589985ba76f25b0378af6 (diff)
fixed boxShadows for backgrounds and activeDocuments() for freeformviews/marquees
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx')
-rw-r--r--src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
index 6b2b79261..5d5d9de9e 100644
--- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
+++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
@@ -283,7 +283,7 @@ export class CollectionFreeFormView extends CollectionSubView(PanZoomDocument) {
return this.childDocs.filter(doc => {
var page = NumCast(doc.page, -1);
return page === curPage || page === -1;
- });
+ }).map(doc => Doc.GetLayoutDataDocPair(this.props.Document, this.props.DataDoc, this.props.fieldKey, doc).layout);
}
@computed get fieldExtensionDoc() {