@esfaenza/forms-and-validations 11.2.115 → 11.2.116
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/esfaenza-forms-and-validations.umd.js +2 -0
- package/bundles/esfaenza-forms-and-validations.umd.js.map +1 -1
- package/esm2015/lib/forms/form-autocomplete/form-autocomplete.component.js +2 -1
- package/fesm2015/esfaenza-forms-and-validations.js +1 -0
- package/fesm2015/esfaenza-forms-and-validations.js.map +1 -1
- package/package.json +1 -1
|
@@ -3727,10 +3727,12 @@
|
|
|
3727
3727
|
};
|
|
3728
3728
|
/** @ignore */
|
|
3729
3729
|
FormAutocompleteComponent.prototype.removeFilteredSourceOnDescriptionSelection = function () {
|
|
3730
|
+
var _this = this;
|
|
3730
3731
|
if (this.FilteredBoundSource.length == 1 && (this.FilteredBoundSource[0].description === this.Model) && !this.Multi) {
|
|
3731
3732
|
this.Model = this.BoundSource[0].id;
|
|
3732
3733
|
this.EvaluatedModel = this.BoundSource[0].description;
|
|
3733
3734
|
this.FilteredBoundSource = [];
|
|
3735
|
+
setTimeout(function () { _this.finalizeValue(_this.Model); });
|
|
3734
3736
|
}
|
|
3735
3737
|
};
|
|
3736
3738
|
/** @ignore */
|