Skip to content

Commit 0d429d7

Browse files
committed
v1.14.13
1 parent db1a40f commit 0d429d7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

components/FormValidation.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export default class FormValidation extends React.PureComponent<IProps> {
1414

1515
private onSubmit = (e?: React.SyntheticEvent) => {
1616
e && e.preventDefault && e.preventDefault();
17+
e && e.stopPropagation && e.stopPropagation();
1718

1819
const isValid = this.validationContext.isValid(true);
1920
this.props.onSubmit(isValid);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"validation",
1111
"material"
1212
],
13-
"version": "1.14.12",
13+
"version": "1.14.13",
1414
"main": "./dist/index.js",
1515
"types": "./dist/index.d.ts",
1616
"license": "MIT",

0 commit comments

Comments
 (0)