diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-02-07 23:50:07 -0500 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-02-07 23:50:07 -0500 |
commit | 90296f23320df43e73fb1bd936428f19f0f705a9 (patch) | |
tree | 42dc1f8fbe639d53e7c6d3db144bd30d984c21de | |
parent | 024c5339621fd220d71f0e7ce71055e3055dcfc9 (diff) |
Got rid of extra !
-rw-r--r-- | src/views/nodes/CollectionFreeFormDocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/nodes/CollectionFreeFormDocumentView.tsx b/src/views/nodes/CollectionFreeFormDocumentView.tsx index dc284e07c..e0bb459e9 100644 --- a/src/views/nodes/CollectionFreeFormDocumentView.tsx +++ b/src/views/nodes/CollectionFreeFormDocumentView.tsx @@ -85,7 +85,7 @@ export class CollectionFreeFormDocumentView extends DocumentView { @computed get active(): boolean { return SelectionManager.IsSelected(this) || this.props.ContainingCollectionView === undefined || - this.props.ContainingCollectionView!.active; + this.props.ContainingCollectionView.active; } @computed |