diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-07-05 16:34:20 -0400 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-07-05 16:34:20 -0400 |
commit | 6344b74a546a75975ef5539b9138fb6290d72fc5 (patch) | |
tree | a165608a45c67ca8a087fb773fafcd2d565c0933 | |
parent | c42d288a6ea658542f398ee48492ff35e14d400d (diff) | |
parent | 31f8a808640a598a923096900ceaa2cd95a30c7d (diff) |
Merge branch 'master' of github-tsch-brown:browngraphicslab/Dash-Web
-rw-r--r-- | src/client/views/collections/CollectionBaseView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionBaseView.tsx b/src/client/views/collections/CollectionBaseView.tsx index 879898018..e4f9b5058 100644 --- a/src/client/views/collections/CollectionBaseView.tsx +++ b/src/client/views/collections/CollectionBaseView.tsx @@ -64,7 +64,7 @@ export class CollectionBaseView extends React.Component<CollectionViewProps> { active = (): boolean => { var isSelected = this.props.isSelected(); - return isSelected || this._isChildActive || this.props.renderDepth === 0; + return isSelected || this._isChildActive || this.props.renderDepth === 0 || BoolCast(this.props.Document.excludeFromLibrary); } //TODO should this be observable? |