Skip to content

Commit 27a953c

Browse files
committed
fix
1 parent c7aa0da commit 27a953c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/repl/src/lib/Output/AstNode.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<!-- svelte-ignore a11y_mouse_events_have_key_events (seems like a false positive) -->
102102
<details
103103
bind:open
104-
onfocusin={() => onhover(value)}
104+
onfocusin={(e) => (e.stopPropagation(), onhover(value))}
105105
onfocusout={(e) => onhover(null)}
106106
onmouseover={() => onhover(value)}
107107
onmouseleave={() => onhover(null)}

0 commit comments

Comments
 (0)