ensure we call onFinished successfully if the user actually hits submit

pull/21833/head
Matthew Hodgson 2016-03-18 11:12:37 +00:00
parent d0d22136f5
commit e63990a66e
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ module.exports = React.createClass({
onFormSubmit: function(ev) {
ev.preventDefault();
this.props.onFinished();
this.props.onFinished(true);
return false;
},