momentum-mod / website

Momentum Mod's main website.
https://momentum-mod.org
MIT License
55 stars 60 forks source link

Pressing enter on map submission form text inputs creates new suggestions #948

Closed tsa96 closed 1 month ago

tsa96 commented 1 month ago

Pressing enter when any <input type="text"> calls the (click) output on the map-leaderboards-suggestion "Add Leaderboard" button. I have NO IDEA why it's happening. As far as I can tell it's only the text inputs, maybe some misconfiguration of the overall form.

kanoka42 commented 1 month ago

Fix in my branch here

GordiNoki commented 1 month ago

The actual issue is that default button type is "submit" and submit buttons trigger their onclick event when enter is pressed on text field in the same form. @kanoka42 's solution looks good