Remove stopPropagation on:click

Remove stopPropagation on:click helps when you have more then one acction to switch between actions tabs
This commit is contained in:
Daniel Miedzik 2021-10-08 15:29:51 +02:00 committed by GitHub
commit b85ab30c99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@
class:action-text="{text}"
{...$$restProps}
on:click
on:click|stopPropagation="{() => {
on:click="{() => {
isOpen = !isOpen;
dispatch(isOpen ? 'open' : 'close');
}}"