diff --git a/frontend/src/Components/Form/CheckInput.js b/frontend/src/Components/Form/CheckInput.js index 0fc0be9cd..134290111 100644 --- a/frontend/src/Components/Form/CheckInput.js +++ b/frontend/src/Components/Form/CheckInput.js @@ -69,6 +69,10 @@ class CheckInput extends Component { } onClick = (event) => { + if (this.props.isDisabled) { + return; + } + const shiftKey = event.nativeEvent.shiftKey; const checked = !this._checkbox.checked;