fix(dropdown): allow clicking chevron to toggle menu

#251
This commit is contained in:
Eric Liu 2020-09-14 14:29:35 -07:00
commit 73861e2fa8
4 changed files with 5 additions and 4 deletions

View file

@ -275,7 +275,8 @@
open="{open}" />
{/if}
<ListBoxMenuIcon
on:click="{() => {
on:click="{(e) => {
e.stopPropagation();
open = !open;
}}"
translateWithId="{translateWithId}"