tnx-shared 5.1.473 → 5.1.475

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.
@@ -14099,7 +14099,6 @@
14099
14099
  };
14100
14100
  CrudFormComponent.prototype.clean = function () {
14101
14101
  this.cleanModel(this._modelData);
14102
- this.reInitControlModelAndRootNode();
14103
14102
  };
14104
14103
  CrudFormComponent.prototype.cleanModel = function (model) {
14105
14104
  var e_3, _e;
@@ -14116,12 +14115,7 @@
14116
14115
  }
14117
14116
  }
14118
14117
  else {
14119
- if (typeof (model[key]) == 'object') {
14120
- this.cleanModel(model[key]);
14121
- }
14122
- else {
14123
- model[key] = undefined;
14124
- }
14118
+ this.cleanModel(model[key]);
14125
14119
  }
14126
14120
  }
14127
14121
  }