intelica-library-ui 0.1.147 → 0.1.148
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.
|
@@ -2897,7 +2897,7 @@ class MultiSelectComponent {
|
|
|
2897
2897
|
this.selectedOptions = [];
|
|
2898
2898
|
}
|
|
2899
2899
|
else {
|
|
2900
|
-
this.options.map(option => option[this.optionValue]);
|
|
2900
|
+
this.selectedOptions = this.options.map(option => option[this.optionValue]);
|
|
2901
2901
|
if (this.options.some(option => typeof option !== "object")) {
|
|
2902
2902
|
this.selectedOptions = this.options;
|
|
2903
2903
|
}
|