We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All 3 buttons, Text, Background and Color Picker submit my form which posts my message before finished.
Thanks!
No
The text was updated successfully, but these errors were encountered:
There is actually a pretty easy workaround. I just prevent default on onSubmit and pass my submit handler onClick.
<form onSubmit={(e) => {e.preventDefault();}}> and <input type="button" value="Post" className={styles.postButton} onClick={handleSubmit}/>
<form onSubmit={(e) => {e.preventDefault();}}>
<input type="button" value="Post" className={styles.postButton} onClick={handleSubmit}/>
Sorry, something went wrong.
@Keneficka thanks for reporting. yeah, easy fix
No branches or pull requests
Has this bug been raised before?
Description
All 3 buttons, Text, Background and Color Picker submit my form which posts my message before finished.
Thanks!
Screenshots
Do you want to work on this issue?
No
The text was updated successfully, but these errors were encountered: