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

pull/12110/merge
hetech 2018-07-25 11:32:35 +08:00 committed by GitHub
parent c2d41ad882
commit 51877f6d65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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();