@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.
@@ -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.Source.find(function (t) { return t.id == value; });
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;