diff options
| author | bobzel <zzzman@gmail.com> | 2020-12-10 14:18:53 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-12-10 14:18:53 -0500 |
| commit | d913740b994670b1b0eadd52069aeb69ef2b2380 (patch) | |
| tree | 322686806c3a183a07fc27b5737935a7f7a41465 /src/client/views/collections/CollectionTimeView.tsx | |
| parent | 30338491c7b3cbba852931c76774f6bfd44d4060 (diff) | |
more cleanup/organization of 'props' . removed VisibleHeight props and cleaned up PDF and other props
Diffstat (limited to 'src/client/views/collections/CollectionTimeView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionTimeView.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTimeView.tsx b/src/client/views/collections/CollectionTimeView.tsx index e4a3c384c..c7a826669 100644 --- a/src/client/views/collections/CollectionTimeView.tsx +++ b/src/client/views/collections/CollectionTimeView.tsx @@ -85,7 +85,12 @@ export class CollectionTimeView extends CollectionSubView(doc => doc) { @computed get contents() { return <div className="collectionTimeView-innards" key="timeline" style={{ width: "100%", pointerEvents: this.props.active() ? undefined : "none" }} onPointerDown={this.contentsDown}> - <CollectionFreeFormView {...this.props} childClickScript={this._childClickedScript} viewDefDivClick={this._viewDefDivClick} fitToBox={true} childFreezeDimensions={true} layoutEngine={this.layoutEngine} /> + <CollectionFreeFormView {...this.props} + fitToBox={true} + childClickScript={this._childClickedScript} + viewDefDivClick={this._viewDefDivClick} + childFreezeDimensions={true} + layoutEngine={this.layoutEngine} /> </div>; } |
