@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.
- 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-multiselect/form-multiselect.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
|
@@ -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.
|
|
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(', ');
|