Skip to content

Commit 64c72b6

Browse files
authored
fix: output picker output opening doesn't change id (#5641)
1 parent 02a25ba commit 64c72b6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

frontend/src/lib/components/flows/propPicker/OutputPicker.svelte

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@
9191
'shadow-[inset_0_1px_5px_0_rgba(0,0,0,0.05)] rounded-b-sm',
9292
'group'
9393
)}
94+
on:pointerdown={(e) => {
95+
e.preventDefault()
96+
e.stopPropagation()
97+
}}
9498
data-prop-picker
9599
title={`${isOpen ? 'Close' : 'Open'} step output`}
96100
>

0 commit comments

Comments
 (0)