summaryrefslogtreecommitdiffstats
path: root/web/react/components/team_signup_password_page.jsx
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-08-31 13:33:22 -0700
committer=Corey Hulen <corey@hulen.com>2015-08-31 13:33:22 -0700
commit7de7de6ad0882ef25ed9be5bbd91576cc822206f (patch)
treedbd7268878456d9fc0dce82a72b804d14cc6ee21 /web/react/components/team_signup_password_page.jsx
parent82a54f9363e3a6b7d4268ef951ac427e94deacb2 (diff)
downloadchat-7de7de6ad0882ef25ed9be5bbd91576cc822206f.tar.gz
chat-7de7de6ad0882ef25ed9be5bbd91576cc822206f.tar.bz2
chat-7de7de6ad0882ef25ed9be5bbd91576cc822206f.zip
MM-2056 fixes problem with creating team
Diffstat (limited to 'web/react/components/team_signup_password_page.jsx')
-rw-r--r--web/react/components/team_signup_password_page.jsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/web/react/components/team_signup_password_page.jsx b/web/react/components/team_signup_password_page.jsx
index bbe82a5c2..6b21915f6 100644
--- a/web/react/components/team_signup_password_page.jsx
+++ b/web/react/components/team_signup_password_page.jsx
@@ -57,13 +57,14 @@ module.exports = React.createClass({
window.location.href = '/verify_email?email=' + encodeURIComponent(teamSignup.team.email) + '&teamname=' + encodeURIComponent(teamSignup.team.name);
} else {
this.setState({serverError: err.message});
+ $('#finish-button').button('reset');
}
}.bind(this)
);
}.bind(this),
function error(err) {
this.setState({serverError: err.message});
- $('#sign-up-button').button('reset');
+ $('#finish-button').button('reset');
}.bind(this)
);
},