Skip to content

Commit d6393eb

Browse files
committed
frontend/jupyter/llm: fix bubbling up slider clicks erroneously closing the modal
1 parent b01839a commit d6393eb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/packages/frontend/jupyter/llm/cell-context-selector.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ export function LLMCellContextSelector({
106106

107107
return (
108108
<>
109-
<Paragraph>
109+
{/* Prevent clicks from bubbling to modal mask - fixes slider interactions closing modal */}
110+
<Paragraph onClick={(e) => e.stopPropagation()}>
110111
<Flex align="center" gap="10px">
111112
<Text>Context:</Text>
112113
<Slider

0 commit comments

Comments
 (0)