summaryrefslogtreecommitdiffstats
path: root/web/react
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-09-01 08:28:03 -0400
committerChristopher Speller <crspeller@gmail.com>2015-09-01 08:28:03 -0400
commit1dddc304147c4e25abcd9d110b2c90fbcef7cc26 (patch)
treed77c6acdb24c707909e8f2313c834021b2dea2f1 /web/react
parenta06a07df89d83a94e875519a4e18973a6785f924 (diff)
parent7de7de6ad0882ef25ed9be5bbd91576cc822206f (diff)
downloadchat-1dddc304147c4e25abcd9d110b2c90fbcef7cc26.tar.gz
chat-1dddc304147c4e25abcd9d110b2c90fbcef7cc26.tar.bz2
chat-1dddc304147c4e25abcd9d110b2c90fbcef7cc26.zip
Merge pull request #528 from mattermost/MM-2056
HOTFIX MM-2056 fixes problem with creating team
Diffstat (limited to 'web/react')
-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)
);
},