atr-components 0.2.205 → 0.2.206

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.
@@ -4081,7 +4081,9 @@ class AtrFormComponent {
4081
4081
  list.forEach((dic) => {
4082
4082
  if (dic.value == value[index]) {
4083
4083
  value[index] = dic.nzValueProperty;
4084
- value = this.getCascaderDefaultValue(dic.children, index + 1, value);
4084
+ if (dic.children) {
4085
+ value = this.getCascaderDefaultValue(dic.children, index + 1, value);
4086
+ }
4085
4087
  return;
4086
4088
  }
4087
4089
  });