@acorex/components 3.0.42 → 3.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/acorex-components.umd.js +2 -2
- package/bundles/acorex-components.umd.js.map +1 -1
- package/bundles/acorex-components.umd.min.js +1 -1
- package/bundles/acorex-components.umd.min.js.map +1 -1
- package/esm2015/lib/tree-view/tree-view.component.js +3 -3
- package/esm5/lib/tree-view/tree-view.component.js +3 -3
- package/fesm2015/acorex-components.js +2 -2
- package/fesm2015/acorex-components.js.map +1 -1
- package/fesm5/acorex-components.js +2 -2
- package/fesm5/acorex-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -14238,7 +14238,7 @@
|
|
|
14238
14238
|
_this.seletedKeyFields.forEach(function (n) {
|
|
14239
14239
|
if (n.includes(el[_this.keyField])) {
|
|
14240
14240
|
if (el[_this.hasChildField] == true) {
|
|
14241
|
-
if (_this.checkParents == false && _this.checkChilds == false) {
|
|
14241
|
+
if ((_this.checkParents == false && _this.checkChilds == false) || _this.checkChilds == false) {
|
|
14242
14242
|
//select parent when check child and check parent is false TODO check this Action
|
|
14243
14243
|
_this.selectItem(el);
|
|
14244
14244
|
}
|
|
@@ -14253,7 +14253,7 @@
|
|
|
14253
14253
|
}
|
|
14254
14254
|
else if (_this.selectedFieldName != null) {
|
|
14255
14255
|
if (el[_this.hasChildField] == true && el[_this.selectedFieldName] == true) {
|
|
14256
|
-
if (_this.checkParents == false && _this.checkChilds == false) {
|
|
14256
|
+
if ((_this.checkParents == false && _this.checkChilds == false) || _this.checkChilds == false) {
|
|
14257
14257
|
//select parent when check child and check parent is false TODO check this Action
|
|
14258
14258
|
_this.selectItem(el);
|
|
14259
14259
|
}
|