mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 03:26:36 +00:00
fix(modal): prevent clicking inside inner modal from closing the modal
- revert adding a `stopPropagation` modifier to the PasswordInput "toggle password" button
This commit is contained in:
parent
a7a257cdce
commit
52a10d3acd
5 changed files with 23 additions and 12 deletions
|
@ -14,7 +14,9 @@
|
|||
</script>
|
||||
|
||||
{#if story === undefined}
|
||||
<ComposedModal {...$$props.composedModal}>
|
||||
<ComposedModal {...$$props.composedModal} on:click={(e) => {
|
||||
console.log(e.target)
|
||||
}}>
|
||||
<ModalHeader {...$$props.modalHeader} />
|
||||
<ModalBody
|
||||
{...$$props.modalBody}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue