Skip to content

Commit c51b2a9

Browse files
committed
fix: fix scrolling on command
1 parent 01f2076 commit c51b2a9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

frontend/testing-view/src/features/workspace/components/rightSidebar/tabs/commands/CommandParameters.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export const CommandParameters = ({
4747
placeholder={field.type}
4848
value={values[field.id] ?? ""}
4949
onChange={(e) => onChange(field.id, e.target.value)}
50+
onWheel={(e) => e.currentTarget.blur()}
5051
className="h-8 text-xs"
5152
/>
5253
{minSafeRange !== null && maxSafeRange !== null && (

0 commit comments

Comments
 (0)