diff options
Diffstat (limited to 'src/client/views/collections/CollectionView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionView.tsx | 7 |
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>; } |