diff --git a/src/ComboBox/ComboBox.svelte b/src/ComboBox/ComboBox.svelte index dfb7bec3..e131a601 100644 --- a/src/ComboBox/ComboBox.svelte +++ b/src/ComboBox/ComboBox.svelte @@ -275,7 +275,8 @@ open="{open}" /> {/if} { + e.stopPropagation(); open = !open; }}" translateWithId="{translateWithId}" diff --git a/src/ListBox/ListBoxMenuIcon.svelte b/src/ListBox/ListBoxMenuIcon.svelte index 8081e687..d6b5207b 100644 --- a/src/ListBox/ListBoxMenuIcon.svelte +++ b/src/ListBox/ListBoxMenuIcon.svelte @@ -36,6 +36,6 @@ class:bx--list-box__menu-icon="{true}" class:bx--list-box__menu-icon--open="{open}" {...$$restProps} - on:click|preventDefault|stopPropagation> + on:click|preventDefault> diff --git a/src/MultiSelect/MultiSelect.stories.js b/src/MultiSelect/MultiSelect.stories.js index c67b119c..d0d99cd0 100644 --- a/src/MultiSelect/MultiSelect.stories.js +++ b/src/MultiSelect/MultiSelect.stories.js @@ -20,7 +20,6 @@ export const Default = () => ({ id: text("MultiSelect id", "multi-select-id"), name: text("MultiSelect name", "multi-select-name"), titleText: text("Title (titleText)", "Multiselect Title"), - helperText: text("Helper text (helperText)", "This is not helper text"), filterable: boolean("Filterable (filterable)", false), selectionFeedback: select( "Selection feedback (selectionFeedback)", diff --git a/src/MultiSelect/MultiSelect.svelte b/src/MultiSelect/MultiSelect.svelte index e709de9a..bcb96a35 100644 --- a/src/MultiSelect/MultiSelect.svelte +++ b/src/MultiSelect/MultiSelect.svelte @@ -405,7 +405,8 @@ open="{open}" /> {/if} { + e.stopPropagation(); open = !open; }}" translateWithId="{translateWithId}"