diff options
| author | andrewdkim <adkim414@gmail.com> | 2019-08-14 11:55:16 -0400 |
|---|---|---|
| committer | andrewdkim <adkim414@gmail.com> | 2019-08-14 11:55:16 -0400 |
| commit | 46f4945d38ca9423f1114fb4c4b4f4a72389a89e (patch) | |
| tree | 49de0599cc94f504e4bb5e46f889cb01bbc1b641 /src/client/views/collections/CollectionBaseView.tsx | |
| parent | f43509c132b5302b9983667aaf99251051b38b59 (diff) | |
| parent | 7a71c9005189e111e9c9d197d02cc9a6a1bce389 (diff) | |
merge from master
Diffstat (limited to 'src/client/views/collections/CollectionBaseView.tsx')
| -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 cad87ebcc..4a296493a 100644 --- a/src/client/views/collections/CollectionBaseView.tsx +++ b/src/client/views/collections/CollectionBaseView.tsx @@ -83,7 +83,7 @@ export class CollectionBaseView extends React.Component<CollectionViewProps> { active = (): boolean => { var isSelected = this.props.isSelected(); - return isSelected || this._isChildActive || this.props.renderDepth === 0 || BoolCast(this.props.Document.excludeFromLibrary); + return isSelected || BoolCast(this.props.Document.forceActive) || this._isChildActive || this.props.renderDepth === 0 || BoolCast(this.props.Document.excludeFromLibrary); } //TODO should this be observable? |
