Skip to content
Snippets Groups Projects
Commit 2a1e47ab authored by esikkala's avatar esikkala
Browse files

Hide unknown facet value when instance count is 0

parent f22ab586
No related branches found
No related tags found
No related merge requests found
......@@ -146,6 +146,9 @@ class HierarchicalFacet extends Component {
}
generateNodeProps = treeObj => {
if (treeObj.node.prefLabel === 'Unknown' && treeObj.node.instanceCount == 0) {
return null;
}
return {
title: (
<FormControlLabel
......@@ -153,8 +156,10 @@ class HierarchicalFacet extends Component {
<Checkbox
className={this.props.classes.checkbox}
checked={treeObj.node.selected === 'true' ? true : false}
disabled={(treeObj.node.instanceCount == 0 && treeObj.node.selected === 'false')
|| treeObj.node.prefLabel == 'Unknown' ? true : false}
disabled={
(treeObj.node.instanceCount == 0 && treeObj.node.selected === 'false')
|| treeObj.node.prefLabel == 'Unknown'
}
onChange={this.handleCheckboxChange(treeObj)}
value={treeObj.node.id}
color="primary"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment