summaryrefslogtreecommitdiffstats
path: root/web/react/components/login.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-06-16 13:18:41 -0800
committerCorey Hulen <corey@hulen.com>2015-06-16 13:18:41 -0800
commitf937fa0d9cc5fb8e63c95b53ceea8665c35a8125 (patch)
tree5c8836e535e01d9ce5076104f0db6a4a0c82e313 /web/react/components/login.jsx
parentdae0340d7de308d2e6bc7145fb158635b5cdf0ca (diff)
parentd927e2ba69dd355c01878afc0ec57cca6889b8e1 (diff)
downloadchat-f937fa0d9cc5fb8e63c95b53ceea8665c35a8125.tar.gz
chat-f937fa0d9cc5fb8e63c95b53ceea8665c35a8125.tar.bz2
chat-f937fa0d9cc5fb8e63c95b53ceea8665c35a8125.zip
Merge pull request #14 from mattermost/mm-1294
MM-1294 - Parsing homelink from URL instead of using config setting.
Diffstat (limited to 'web/react/components/login.jsx')
-rw-r--r--web/react/components/login.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/login.jsx b/web/react/components/login.jsx
index 685e1b058..103a93bc6 100644
--- a/web/react/components/login.jsx
+++ b/web/react/components/login.jsx
@@ -74,7 +74,7 @@ var FindTeamDomain = React.createClass({
<br/>
<br/>
<div>
- <span>{"Want to create your own " + strings.Team + "?"} <a href={config.HomeLink} className="signup-team-login">Sign up now</a></span>
+ <span>{"Want to create your own " + strings.Team + "?"} <a href={utils.getHomeLink()} className="signup-team-login">Sign up now</a></span>
</div>
</form>
</div>
@@ -188,7 +188,7 @@ module.exports = React.createClass({
<a href="/reset_password">I forgot my password</a>
</div>
<div className="external-link">
- <span>{"Want to create your own " + strings.Team + "?"} <a href={config.HomeLink} className="signup-team-login">Sign up now</a></span>
+ <span>{"Want to create your own " + strings.Team + "?"} <a href={utils.getHomeLink()} className="signup-team-login">Sign up now</a></span>
</div>
</form>
</div>