diff options
Diffstat (limited to 'app/client/common')
| -rw-r--r-- | app/client/common/paramGroup.component.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/client/common/paramGroup.component.js b/app/client/common/paramGroup.component.js index 1fb875c..7b47c78 100644 --- a/app/client/common/paramGroup.component.js +++ b/app/client/common/paramGroup.component.js @@ -17,7 +17,8 @@ class ParamGroup extends Component { render() { const checked = this.props.opt[this.props.name] const toggle = !this.props.noToggle - const className = (!toggle || checked) ? 'paramGroup active' : 'paramGroup inactive' + const dim = !this.props.noDim + const className = (!dim || !toggle || checked) ? 'paramGroup active' : 'paramGroup inactive' return ( <div className={className}> <label> |
