diff --git a/src/lib/forms/select/MultiSelect.svelte b/src/lib/forms/select/MultiSelect.svelte index 4d757dbdb..21fe9d070 100644 --- a/src/lib/forms/select/MultiSelect.svelte +++ b/src/lib/forms/select/MultiSelect.svelte @@ -212,6 +212,8 @@ onclick={toggleDropdown} onblur={handleBlur} onkeydown={handleKeyDown} + // prevents the onclose event from the Badge from bubbling up outside of the MultiSelect container + onclose={(e) => e.stopPropagation()} tabindex="0" role="listbox" class={base({ size, class: clsx(theme?.base, className) })}