aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionTreeView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-08-26 02:30:44 -0400
committerbobzel <zzzman@gmail.com>2020-08-26 02:30:44 -0400
commit6471ccff7dd145d3725492ccccaecc6035e851f2 (patch)
tree0826a9179b16e4d3fbe5925eadc8c738a00c575d /src/client/views/collections/CollectionTreeView.tsx
parentd2e29bc56a8c0bc8bee0d1ceb28726b3caabdb36 (diff)
fixed warnings. fixed url / annoation updating when navigating web pages.
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.tsx')
-rw-r--r--src/client/views/collections/CollectionTreeView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTreeView.tsx b/src/client/views/collections/CollectionTreeView.tsx
index 918377052..5099f0022 100644
--- a/src/client/views/collections/CollectionTreeView.tsx
+++ b/src/client/views/collections/CollectionTreeView.tsx
@@ -825,7 +825,7 @@ export class CollectionTreeView extends CollectionSubView<Document, Partial<coll
whenActiveChanged = (isActive: boolean) => {
this.props.whenActiveChanged(this._isChildActive = isActive);
}
- active = (outsideReaction: boolean | undefined) => { return this.props.active(outsideReaction) || this._isChildActive; }
+ active = (outsideReaction: boolean | undefined) => this.props.active(outsideReaction) || this._isChildActive;
render() {
TraceMobx();
if (!(this.doc instanceof Doc)) return (null);