aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionView.tsx
diff options
context:
space:
mode:
authoranika-ahluwalia <anika.ahluwalia@gmail.com>2020-07-22 16:27:27 -0500
committeranika-ahluwalia <anika.ahluwalia@gmail.com>2020-07-22 16:27:27 -0500
commita99cef9945c1c4f9e5ff07663fc6db5cda2dcd50 (patch)
treea33a7ac048d3d69e50d14596e135d58b19cdf1f2 /src/client/views/collections/CollectionView.tsx
parent5b025537f60ef9222c0203db378c0298cd3dc86f (diff)
added layout section
Diffstat (limited to 'src/client/views/collections/CollectionView.tsx')
-rw-r--r--src/client/views/collections/CollectionView.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionView.tsx b/src/client/views/collections/CollectionView.tsx
index 616e7995d..eec68f9fc 100644
--- a/src/client/views/collections/CollectionView.tsx
+++ b/src/client/views/collections/CollectionView.tsx
@@ -588,7 +588,12 @@ export class CollectionView extends Touchable<FieldViewProps & CollectionViewCus
width: `${this.propertiesWidth()}px`,
overflow: this.propertiesWidth() < 15 ? "hidden" : undefined
}}>
- <PropertiesView document={this.dataDoc} />
+ <PropertiesView dataDoc={this.dataDoc} Document={this.props.Document}
+ width={this._propertiesWidth}
+ height={this.props.PanelHeight()}
+ renderDepth={this.props.renderDepth}
+ ScreenToLocalTransform={this.props.ScreenToLocalTransform}
+ />
</div>;
}