diff options
| author | bobzel <zzzman@gmail.com> | 2021-08-06 10:34:57 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-08-06 10:34:57 -0400 |
| commit | d756ffd3daa24270361648454062e98f190ae964 (patch) | |
| tree | 483340406733fd34ff0a92115e7936ef28e2366c /src/client/views/collections/CollectionView.tsx | |
| parent | b25921a0cbdb431726e7089fabdd08fe43c6b3de (diff) | |
fixed webboxes so that you can link to an annotation and it will restore the url as well. a bunch of warnings cleanup.
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 2ae06d2f4..e65ebf075 100644 --- a/src/client/views/collections/CollectionView.tsx +++ b/src/client/views/collections/CollectionView.tsx @@ -236,7 +236,7 @@ export class CollectionView extends ViewBoxAnnotatableComponent<ViewBoxAnnotatab * Shows the filter icon if it's a user-created collection which isn't a dashboard and has some docFilters applied on it or on the current dashboard. */ @computed get showFilterIcon() { - return this.props.Document.viewType !== CollectionViewType.Docking && !Doc.IsSystem(this.props.Document) && this._subView?.IsFiltered() + return this.props.Document.viewType !== CollectionViewType.Docking && !Doc.IsSystem(this.props.Document) && this._subView?.IsFiltered(); } @observable _subView: any = undefined; |
