@esfaenza/forms-and-validations 11.2.63 → 11.2.64

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.
@@ -3219,7 +3219,10 @@
3219
3219
  };
3220
3220
  FormSelectComponent.prototype.detatchPreviousAndRetatchNext = function (doStuff) {
3221
3221
  var _this = this;
3222
- this.Form.removeControl(this.validationControl);
3222
+ if (this.validationControl)
3223
+ this.Form.removeControl(this.validationControl);
3224
+ else
3225
+ console.log("Nothing to detatch");
3223
3226
  setTimeout(function () {
3224
3227
  doStuff(function () {
3225
3228
  if (_this.validationControl)