diff options
author | monikahedman <monika_hedman@brown.edu> | 2019-07-16 14:47:24 -0400 |
---|---|---|
committer | monikahedman <monika_hedman@brown.edu> | 2019-07-16 14:47:24 -0400 |
commit | b49f13d72033ab74bfecea00889fa81c85bfd533 (patch) | |
tree | 286cbfde9864c9a46f9501cd2975fb854a0d6f13 /src/client/views/collections/CollectionTreeView.tsx | |
parent | 189bb0ffd14fb0b8db0edbe813efe19f143a30fd (diff) | |
parent | 98c3a06256d2cbd720b2c193e5aa282c5dc25350 (diff) |
Merge branch 'search_virt' of https://github.com/browngraphicslab/Dash-Web into search_virt
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionTreeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTreeView.tsx b/src/client/views/collections/CollectionTreeView.tsx index 0196fecff..c212cc97c 100644 --- a/src/client/views/collections/CollectionTreeView.tsx +++ b/src/client/views/collections/CollectionTreeView.tsx @@ -153,7 +153,7 @@ class TreeView extends React.Component<TreeViewProps> { let docList = Cast(this.resolvedDataDoc[this.fieldKey], listSpec(Doc)); let doc = Cast(this.resolvedDataDoc[this.fieldKey], Doc); let isDoc = doc instanceof Doc || docList; - let c + let c; return <div className="bullet" onClick={action(() => this._collapsed = !this._collapsed)} style={{ color: StrCast(this.props.document.color, "black"), opacity: 0.4 }}> {<FontAwesomeIcon icon={this._collapsed ? (isDoc ? "caret-square-right" : "caret-right") : (isDoc ? "caret-square-down" : "caret-down")} />} </div>; |