aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusodhi <61431818+usodhi@users.noreply.github.com>2021-05-11 21:10:37 -0400
committerusodhi <61431818+usodhi@users.noreply.github.com>2021-05-11 21:10:37 -0400
commitcdb61a7a83dd6f6573c4667ce85fd1f613ce2f0a (patch)
treec313a88008585f038cabe3812c298dc72418cdd0
parent534877a9d75f828c50c37dc43a0555c307444709 (diff)
expand propertiesview on icon click
-rw-r--r--src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
index 6b5b67bd8..870b0f79d 100644
--- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
+++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
@@ -1498,7 +1498,7 @@ export class CollectionFreeFormView extends CollectionSubView<PanZoomDocument, P
{StrListCast(this.props.Document._docFilters).length || StrListCast(this.props.Document._docRangeFilters).length ?
<FontAwesomeIcon icon={"filter"} size="lg"
style={{ position: 'absolute', top: 5, right: 5, cursor: "pointer", padding: 1, color: '#18c718bd' }}
- onPointerDown={e => { /** open filters? */ e.stopPropagation(); }}
+ onPointerDown={e => { runInAction(() => CurrentUserUtils.propertiesWidth = 250); e.stopPropagation(); }}
/>
: (null)}