diff options
| author | Sam Wilkins <samwilkins333@gmail.com> | 2020-04-15 10:32:06 -0700 |
|---|---|---|
| committer | Sam Wilkins <samwilkins333@gmail.com> | 2020-04-15 10:32:06 -0700 |
| commit | a751e4375ad19589efa36c06eda7150a93cbc9f2 (patch) | |
| tree | 63152ec5b4c6d292e31ae0fd88088d65da3c03fa /src/client/views/collections/CollectionView.tsx | |
| parent | 531aab6465459557055c0c02e35b1029192263b4 (diff) | |
| parent | 86885c0e97322ae99f331e594a5c67cf04cb4ec2 (diff) | |
fieldKey fixes
Diffstat (limited to 'src/client/views/collections/CollectionView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionView.tsx b/src/client/views/collections/CollectionView.tsx index 0a3577bc7..19e235ff2 100644 --- a/src/client/views/collections/CollectionView.tsx +++ b/src/client/views/collections/CollectionView.tsx @@ -278,7 +278,7 @@ export class CollectionView extends Touchable<FieldViewProps> { onMovePrevRequest={action(() => this._curLightboxImg = (this._curLightboxImg + images.length - 1) % images.length)} onMoveNextRequest={action(() => this._curLightboxImg = (this._curLightboxImg + 1) % images.length)} />); } - get _facetWidth() { return NumCast(this.props.Document._facetWidth) } + get _facetWidth() { return NumCast(this.props.Document._facetWidth); } set _facetWidth(value) { this.props.Document._facetWidth = value; } bodyPanelWidth = () => this.props.PanelWidth() - this.facetWidth(); |
