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 f7ac46b commit aa8a0abCopy full SHA for aa8a0ab
packages/common/src/wizard/enter-handler.js
@@ -1,7 +1,7 @@
1
import selectNext from './select-next';
2
3
const enterHandler = (e, formOptions, activeStep, findCurrentStep, handleNext, handleSubmit) => {
4
- if (e.key === 'Enter') {
+ if (e.key === 'Enter' && !e.shiftKey && !e.ctrlKey) {
5
const isNotButton = e.target.type !== 'button';
6
7
if (isNotButton) {
0 commit comments