We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26ca77b commit 3323fbbCopy full SHA for 3323fbb
src/InputNumber.tsx
@@ -524,7 +524,7 @@ const InternalInputNumber = React.forwardRef(
524
// React onWheel is passive and we can't preventDefault() in it.
525
// That's why we should subscribe with DOM listener
526
// https://stackoverflow.com/questions/63663025/react-onwheel-handler-cant-preventdefault-because-its-a-passive-event-listenev
527
- input.addEventListener('wheel', onWheel);
+ input.addEventListener('wheel', onWheel, { passive: false });
528
return () => input.removeEventListener('wheel', onWheel);
529
}
530
}, [onInternalStep]);
0 commit comments