We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 04664cb + 12ddfcc commit 64df8c7Copy full SHA for 64df8c7
src/js/CheckboxTree.js
@@ -133,6 +133,7 @@ class CheckboxTree extends React.Component {
133
134
toggleChecked(node, isChecked, noCascade) {
135
if (node.children === null || noCascade) {
136
+ if (node.disabled) return;
137
// Set the check status of a leaf node or an uncoupled parent
138
this.toggleNode('checked', node, isChecked);
139
} else {
0 commit comments