You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While a form input is focused in either step 2 or 3 of the add-project wizard, pressing the Enter key to submit the form should go to the wizard's next step.
Actual behavior
The wizard goes to the previous step instead.
Steps to reproduce the error
Example steps (can have many variations):
Go to the add-project wizard
Go to step 2
Enter some name in the Project name field
While the Project name field is still focused, press the Enter key
The page that appears is step 1 instead of the expected step 3
Notes
Because the previous button appears first in the HTML form, this becomes the form's default submit action. Based on some Googling, the only solution seems to be to exchange the order of the buttons and then reverse the order via CSS, and also exchanging the keyboard tab order.
Another solution is to have an invisible duplicate of the Next submit button before the Previous button.
The text was updated successfully, but these errors were encountered:
Expected behavior
While a form input is focused in either step 2 or 3 of the add-project wizard, pressing the Enter key to submit the form should go to the wizard's next step.
Actual behavior
The wizard goes to the previous step instead.
Steps to reproduce the error
Example steps (can have many variations):
Notes
Because the previous button appears first in the HTML form, this becomes the form's default submit action. Based on some Googling, the only solution seems to be to exchange the order of the buttons and then reverse the order via CSS, and also exchanging the keyboard tab order.
Another solution is to have an invisible duplicate of the Next submit button before the Previous button.
The text was updated successfully, but these errors were encountered: