multiselect icon indicating copy to clipboard operation
multiselect copied to clipboard

Search by label when groups is true does not work

Open ejirocodes opened this issue 1 year ago • 0 comments

Expected: when I search for DC or Marvel, it should be highlighted and when clicked it add the corresponding options as tag Actual: No result found 👇🏽 image

<Multiselect
                        v-model="selectedAttributes"
                        mode="multiple"
                        :close-on-select="false"
                        :groups="true"
                        :searchable="true"
                        trackBy="label"
                        :options="[
                          {
                            label: 'DC',
                            options: ['Batman', 'Robin', 'Joker'],
                          },
                          {
                            label: 'Marvel',
                            options: [
                              'Spiderman',
                              'Iron Man',
                              'Captain America',
                            ],
                          },
                        ]"
                      />

ejirocodes avatar Aug 22 '22 11:08 ejirocodes