Skip to content

Commit 32f64c5

Browse files
committed
fix: prevent event propagation on close pane to avoid splitpanes errors
1 parent c61a3ff commit 32f64c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/devtools/src/app/components/flowmap/ModuleFlowDetails.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function handleClose() {
7878
:active="settings.codeviewerLineWrap"
7979
@click="settings.codeviewerLineWrap = !settings.codeviewerLineWrap"
8080
/>
81-
<DisplayCloseButton @click="handleClose" />
81+
<DisplayCloseButton @click.stop="handleClose" />
8282
</div>
8383
<CodeDiffEditor
8484
:from="codeDisplay?.from ?? ''"

0 commit comments

Comments
 (0)