Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WebHost: Fix "Add" button for custom option values causing a weird re…
…direct (ArchipelagoMW#3518) * WebHost: Fix "Add" button for Progression Balancing causing a weird redirect This "add" button is part of a form, which causes it to submit the form, because the default type for a button is "submit". This PR changes the type of the button to "button", which causes it to not submit the form and just execute its normal effect. (An alternative would be `event.preventDefault()` but that seems less clean to me, but also I'm not a HTML/JS dev) * There's also multiple.
- Loading branch information