summaryrefslogtreecommitdiffstats
path: root/webapp/components/not_logged_in.jsx
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-03-24 12:45:12 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2016-03-24 12:45:12 -0400
commitc64b12e27a4218f27bfdfd935fd64ea43f0e6e26 (patch)
tree625baa2a878d1ad9992085649a998fd5f9088094 /webapp/components/not_logged_in.jsx
parent998ce12133358eab587702e258edefbd437f86ba (diff)
parentd6a6668a39db2f78d59919686c5d7b901888da36 (diff)
downloadchat-c64b12e27a4218f27bfdfd935fd64ea43f0e6e26.tar.gz
chat-c64b12e27a4218f27bfdfd935fd64ea43f0e6e26.tar.bz2
chat-c64b12e27a4218f27bfdfd935fd64ea43f0e6e26.zip
Merge pull request #2529 from mattermost/plt-2383
PLT-2383 Fixed system console login page flash.
Diffstat (limited to 'webapp/components/not_logged_in.jsx')
-rw-r--r--webapp/components/not_logged_in.jsx25
1 files changed, 13 insertions, 12 deletions
diff --git a/webapp/components/not_logged_in.jsx b/webapp/components/not_logged_in.jsx
index ac359056a..4beee6259 100644
--- a/webapp/components/not_logged_in.jsx
+++ b/webapp/components/not_logged_in.jsx
@@ -5,6 +5,7 @@ import $ from 'jquery';
import {FormattedMessage} from 'react-intl';
import React from 'react';
+import {Link} from 'react-router';
export default class NotLoggedIn extends React.Component {
componentDidMount() {
@@ -29,34 +30,34 @@ export default class NotLoggedIn extends React.Component {
</div>
<div className='col-xs-12'>
<span className='pull-right footer-link copyright'>{'© 2015 Mattermost, Inc.'}</span>
- <a
+ <Link
id='help_link'
className='pull-right footer-link'
- href={global.window.mm_config.HelpLink}
+ to={global.window.mm_config.HelpLink}
>
<FormattedMessage id='web.footer.help'/>
- </a>
- <a
+ </Link>
+ <Link
id='terms_link'
className='pull-right footer-link'
- href={global.window.mm_config.TermsOfServiceLink}
+ to={global.window.mm_config.TermsOfServiceLink}
>
<FormattedMessage id='web.footer.terms'/>
- </a>
- <a
+ </Link>
+ <Link
id='privacy_link'
className='pull-right footer-link'
- href={global.window.mm_config.PrivacyPolicyLink}
+ to={global.window.mm_config.PrivacyPolicyLink}
>
<FormattedMessage id='web.footer.privacy'/>
- </a>
- <a
+ </Link>
+ <Link
id='about_link'
className='pull-right footer-link'
- href={global.window.mm_config.AboutLink}
+ to={global.window.mm_config.AboutLink}
>
<FormattedMessage id='web.footer.about'/>
- </a>
+ </Link>
</div>
</div>
</div>