summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authormishimi <michelle@spinpunch.com>2015-09-02 13:07:07 -0700
committermishimi <michelle@spinpunch.com>2015-09-02 13:07:07 -0700
commit3c52bd1d2c4d571126971703aaaa032b3444dc8e (patch)
tree3684c357d8076f1df993c9a4b987c0409516fe22 /web
parentff638e460fd33d7b44c0aaa0fa44951c416be428 (diff)
downloadchat-3c52bd1d2c4d571126971703aaaa032b3444dc8e.tar.gz
chat-3c52bd1d2c4d571126971703aaaa032b3444dc8e.tar.bz2
chat-3c52bd1d2c4d571126971703aaaa032b3444dc8e.zip
MM-2102 Clarifying error message on reserved URL words
Diffstat (limited to 'web')
-rw-r--r--web/react/components/team_signup_url_page.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/team_signup_url_page.jsx b/web/react/components/team_signup_url_page.jsx
index 2ea6c3680..6911ba871 100644
--- a/web/react/components/team_signup_url_page.jsx
+++ b/web/react/components/team_signup_url_page.jsx
@@ -42,7 +42,7 @@ export default class TeamSignupUrlPage extends React.Component {
for (let index = 0; index < Constants.RESERVED_TEAM_NAMES.length; index++) {
if (cleanedName.indexOf(Constants.RESERVED_TEAM_NAMES[index]) === 0) {
- this.setState({nameError: 'This team name is unavailable'});
+ this.setState({nameError: 'URL is taken or contains a reserved word'});
return;
}
}