@esfaenza/forms-and-validations 11.2.93 → 11.2.94
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 +1 -1
- package/bundles/esfaenza-forms-and-validations.umd.js.map +1 -1
- package/esm2015/lib/forms/form-autocomplete/form-autocomplete.component.js +2 -2
- package/fesm2015/esfaenza-forms-and-validations.js +1 -1
- package/fesm2015/esfaenza-forms-and-validations.js.map +1 -1
- package/package.json +1 -1
|
@@ -3595,7 +3595,7 @@
|
|
|
3595
3595
|
* @param {any} value Valore scritto nell'input di testo
|
|
3596
3596
|
*/
|
|
3597
3597
|
FormAutocompleteComponent.prototype.finalizeValue = function (value) {
|
|
3598
|
-
var val = this.
|
|
3598
|
+
var val = this.BoundSource.find(function (t) { return t.id == value; });
|
|
3599
3599
|
this.propagateChange(val ? val.id : value);
|
|
3600
3600
|
this.Model = val ? val.description : value;
|
|
3601
3601
|
this.EvaluatedModel = this.Model;
|