summaryrefslogtreecommitdiffstats
path: root/web/react/components/team_signup_with_sso.jsx
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-10-07 10:07:08 -0700
committer=Corey Hulen <corey@hulen.com>2015-10-07 10:07:08 -0700
commit81b7f649ed44875aaf08d7121ba12ee9e89e798f (patch)
tree6958658203d0f024e5e3dc4eb7a31871ad719ad0 /web/react/components/team_signup_with_sso.jsx
parentc189e2bb7681ba01edc9b8c5accd90b94c898d0a (diff)
downloadchat-81b7f649ed44875aaf08d7121ba12ee9e89e798f.tar.gz
chat-81b7f649ed44875aaf08d7121ba12ee9e89e798f.tar.bz2
chat-81b7f649ed44875aaf08d7121ba12ee9e89e798f.zip
GIT-960 show error when you cannot create a team
Diffstat (limited to 'web/react/components/team_signup_with_sso.jsx')
-rw-r--r--web/react/components/team_signup_with_sso.jsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/react/components/team_signup_with_sso.jsx b/web/react/components/team_signup_with_sso.jsx
index 14f281f7a..0c064411a 100644
--- a/web/react/components/team_signup_with_sso.jsx
+++ b/web/react/components/team_signup_with_sso.jsx
@@ -40,17 +40,17 @@ export default class SSOSignUpPage extends React.Component {
client.createTeamWithSSO(team,
this.props.service,
- function success(data) {
+ (data) => {
if (data.follow_link) {
window.location.href = data.follow_link;
} else {
window.location.href = '/' + team.name + '/channels/town-square';
}
},
- function fail(err) {
+ (err) => {
state.serverError = err.message;
this.setState(state);
- }.bind(this)
+ }
);
}
nameChange() {
@@ -85,7 +85,7 @@ export default class SSOSignUpPage extends React.Component {
disabled={disabled}
>
<span className='icon'/>
- <span>Create team with GitLab Account</span>
+ <span>{'Create team with GitLab Account'}</span>
</a>
);
}