Commit 51877f6d authored by hetech's avatar hetech Committed by GitHub

Tree: not check node when check-strictly is true (#12106)

parent c2d41ad8
...@@ -314,7 +314,7 @@ export default class Node { ...@@ -314,7 +314,7 @@ export default class Node {
if (data instanceof Array) { if (data instanceof Array) {
if (this.checked) { if (this.checked) {
this.setChecked(true, true); this.setChecked(true, true);
} else { } else if (!this.store.checkStrictly) {
reInitChecked(this); reInitChecked(this);
} }
done(); done();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment