customToggleText()

in src/components/base/new_dropdowns/listbox/listbox.stories.js [264:269]


    customToggleText() {
      if (this.selected.length === 0) return 'Select assignee(s)';
      if (this.selected.length === 1)
        return this.items.find(({ value }) => value === this.selected[0]).text;
      return `${this.selected.length} assignees`;
    },