diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-25 20:25:50 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-25 20:25:50 -0400 |
| commit | c6d8ac7eef3480a7e19687b066456d9d34519587 (patch) | |
| tree | 042200a70a2aef8ab9426d04bc3fe9e5f7665062 /src/client/views/collections/CollectionView.tsx | |
| parent | 308ae1521cbd58126d35239cfdd5a138f6fa1fe0 (diff) | |
several fixes for performance and for working with isBackground objects.
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 2bd37bda5..801704673 100644 --- a/src/client/views/collections/CollectionView.tsx +++ b/src/client/views/collections/CollectionView.tsx @@ -493,7 +493,7 @@ export class CollectionView extends Touchable<FieldViewProps> { {!this.props.isSelected() || this.props.PanelHeight() < 100 || this.props.Document.hideFilterView ? (null) : <div className="collectionTimeView-dragger" title="library View Dragger" onPointerDown={this.onPointerDown} style={{ right: this.facetWidth() - 10 }} /> } - {this.filterView} + {this.facetWidth() < 10 ? (null) : this.filterView} </div>); } }
\ No newline at end of file |
