fix(frontend): Prevent options from closing when an option is selected (#1912)

This commit is contained in:
Faton Ramadani
2023-07-20 10:01:39 +02:00
committed by GitHub
parent 9178a9cb67
commit 9c2b673982
@@ -156,7 +156,13 @@
</MultiSelect>
<Portal>
<div use:floatingContent class="z5000" hidden={!open}>
<div bind:this={portalRef} class="multiselect" style={`min-width: ${w}px;`} />
<!-- svelte-ignore a11y-click-events-have-key-events -->
<div
bind:this={portalRef}
class="multiselect"
style={`min-width: ${w}px;`}
on:click|stopPropagation
/>
</div>
</Portal>
</div>