@esfaenza/forms-and-validations 11.2.162 → 11.2.163

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.
@@ -3736,7 +3736,7 @@
3736
3736
  if (!this.UseKeyValues && !this.UseCommaSeparatedList)
3737
3737
  toEmit = this.Model.map(function (m) { return m.id; });
3738
3738
  else if (this.UseKeyValues)
3739
- toEmit = this.Model.map(function (m) { return ({ id: m.id, description: m.itemName }); });
3739
+ toEmit = this.Model.map(function (m) { return ({ id: m.id, description: m.description }); });
3740
3740
  else if (this.UseCommaSeparatedList)
3741
3741
  toEmit = this.Model.map(function (m) { return m.id; }).join(',');
3742
3742
  this.EvaluatedModel = this.Model.map(function (t) { return t.itemName; }).join(', ');