@arsedizioni/ars-utils 19.0.32 → 19.0.33
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.
|
@@ -2383,7 +2383,7 @@ class ChipsSelectorComponent {
|
|
|
2383
2383
|
* @param item: the item to check
|
|
2384
2384
|
*/
|
|
2385
2385
|
isSelectable(item) {
|
|
2386
|
-
return this.getSelection().findIndex(x => x.value === item.value) !== -1;
|
|
2386
|
+
return this.multiple() || this.getSelection().findIndex(x => x.value === item.value) !== -1;
|
|
2387
2387
|
}
|
|
2388
2388
|
writeValue(value) {
|
|
2389
2389
|
if (this.value !== value) {
|