mirror of
https://github.com/aclindsa/moneygo.git
synced 2024-12-26 15:42:27 -05:00
Clear state on new account creation Modal when exited
This commit is contained in:
parent
7ea9fb3b73
commit
47ff76d868
@ -66,6 +66,7 @@ const NewAccountModal = React.createClass({
|
|||||||
handleCancel: function() {
|
handleCancel: function() {
|
||||||
if (this.props.onCancel != null)
|
if (this.props.onCancel != null)
|
||||||
this.props.onCancel();
|
this.props.onCancel();
|
||||||
|
this.setState(this.getInitialState());
|
||||||
},
|
},
|
||||||
handleChange: function() {
|
handleChange: function() {
|
||||||
this.setState({
|
this.setState({
|
||||||
@ -96,6 +97,7 @@ const NewAccountModal = React.createClass({
|
|||||||
a.Type = this.state.type;
|
a.Type = this.state.type;
|
||||||
|
|
||||||
this.handleSaveSettings(a);
|
this.handleSaveSettings(a);
|
||||||
|
this.setState(this.getInitialState());
|
||||||
},
|
},
|
||||||
handleSaveSettings: function(account) {
|
handleSaveSettings: function(account) {
|
||||||
if (this.props.onSubmit != null)
|
if (this.props.onSubmit != null)
|
||||||
|
Loading…
Reference in New Issue
Block a user