@arsedizioni/ars-utils 19.0.19 → 19.0.20

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.
@@ -2359,7 +2359,7 @@ class ChipsSelectorComponent {
2359
2359
  * @returns current selection
2360
2360
  */
2361
2361
  getSelection() {
2362
- const value = !this.multiple() || this.collapsed() || this.collapsedDisplayMode() === "button"
2362
+ const value = !this.multiple() && this.collapsed() && this.collapsedDisplayMode() === "button"
2363
2363
  ? this.singleSelection
2364
2364
  : this.selection ?? [];
2365
2365
  const isArray = Array.isArray(value);