aboutsummaryrefslogtreecommitdiff
path: root/src/client/views
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-05-23 22:15:17 -0400
committerbobzel <zzzman@gmail.com>2022-05-23 22:15:17 -0400
commit13924d1b0bd674146b940bb6e31ad6054c447b09 (patch)
tree6db916bd82ec6bc6de3988a777844cf11a9cbcd1 /src/client/views
parent52aa355e4af3f1c5f785dcf1536418119176e5a2 (diff)
fixed warnings.
Diffstat (limited to 'src/client/views')
-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 99ffb9bb0..c49580046 100644
--- a/src/client/views/collections/CollectionTreeView.tsx
+++ b/src/client/views/collections/CollectionTreeView.tsx
@@ -61,7 +61,7 @@ export class CollectionTreeView extends CollectionSubView<Partial<collectionTree
@computed get dataDoc() { return this.props.DataDoc || this.doc; }
@computed get treeViewtruncateTitleWidth() { return NumCast(this.doc.treeViewTruncateTitleWidth, this.panelWidth()); }
@computed get treeChildren() { TraceMobx(); return this.props.childDocuments || this.childDocs; }
- @computed get outlineMode() { return this.doc.treeViewType === TreeViewType.outline }
+ @computed get outlineMode() { return this.doc.treeViewType === TreeViewType.outline; }
@computed get fileSysMode() { return this.doc.treeViewType === TreeViewType.fileSystem; }
@computed get dashboardMode() { return this.doc === Doc.UserDoc().myDashboards; }