svelte-material-ui
svelte-material-ui copied to clipboard
Dialog always closes as soon as I click any Button in the Actions component
<Dialog
bind:open
aria-labelledby="large-scroll-title"
aria-describedby="large-scroll-content"
surface$style="width: 850px; max-width: calc(100vw - 32px); height: 650px"
>
<Content>
Stuff
</Content>
<Actions>
<Button color="default" variant="raised" action="none" on:click$preventDefault="{() => console.log('Hi')}">
<Label>Save and Apply</Label>
</Button>
</Actions>
</Dialog>
Use on:click$stopPropagation for the Actions area buttons