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 db1a40f commit 0d429d7Copy full SHA for 0d429d7
components/FormValidation.tsx
@@ -14,6 +14,7 @@ export default class FormValidation extends React.PureComponent<IProps> {
14
15
private onSubmit = (e?: React.SyntheticEvent) => {
16
e && e.preventDefault && e.preventDefault();
17
+ e && e.stopPropagation && e.stopPropagation();
18
19
const isValid = this.validationContext.isValid(true);
20
this.props.onSubmit(isValid);
package.json
@@ -10,7 +10,7 @@
10
"validation",
11
"material"
12
],
13
- "version": "1.14.12",
+ "version": "1.14.13",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
0 commit comments