fix(ComboBox): adding title prop to ListBoxMenuItem

This commit is contained in:
Borog 2022-03-24 13:26:05 +01:00 committed by GitHub
commit 67ded8b5eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -350,6 +350,7 @@
{#each filteredItems as item, i (item.id)} {#each filteredItems as item, i (item.id)}
<ListBoxMenuItem <ListBoxMenuItem
id="{item.id}" id="{item.id}"
title="{itemToString(item)}"
active="{selectedId === item.id}" active="{selectedId === item.id}"
highlighted="{highlightedIndex === i}" highlighted="{highlightedIndex === i}"
on:click="{() => { on:click="{() => {