@ship-ui/core 0.13.11 → 0.13.12
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.
|
@@ -3340,13 +3340,15 @@ class ShipSelectComponent {
|
|
|
3340
3340
|
this.updateInputElValue();
|
|
3341
3341
|
return;
|
|
3342
3342
|
}
|
|
3343
|
-
const
|
|
3343
|
+
const newInputValue = options
|
|
3344
3344
|
.map((option) => {
|
|
3345
3345
|
const optionValue = valueKey ? this.#getProperty(option, valueKey) : option;
|
|
3346
3346
|
return optionValue;
|
|
3347
3347
|
})
|
|
3348
3348
|
.join(',');
|
|
3349
|
-
this.inputValue
|
|
3349
|
+
if (newInputValue === this.inputValue())
|
|
3350
|
+
return;
|
|
3351
|
+
this.inputValue.set(newInputValue);
|
|
3350
3352
|
this.updateInputElValue();
|
|
3351
3353
|
}
|
|
3352
3354
|
getLabel(option) {
|