summaryrefslogtreecommitdiffstats
path: root/webapp/components/login_username.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-03-24 11:05:13 -0400
committerChristopher Speller <crspeller@gmail.com>2016-03-24 11:05:13 -0400
commitb62e29ba9cd6183551266da05b9b602a4415d738 (patch)
treeea759d6d46cc49386bcd66a8b9b8542f75b1c77e /webapp/components/login_username.jsx
parent68dad8c7345b12c7d0b10709ddc1873d4b40163e (diff)
downloadchat-b62e29ba9cd6183551266da05b9b602a4415d738.tar.gz
chat-b62e29ba9cd6183551266da05b9b602a4415d738.tar.bz2
chat-b62e29ba9cd6183551266da05b9b602a4415d738.zip
Moving all links and redirects to react-router
Diffstat (limited to 'webapp/components/login_username.jsx')
-rw-r--r--webapp/components/login_username.jsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/webapp/components/login_username.jsx b/webapp/components/login_username.jsx
index 5fa27f2d5..71874fa1a 100644
--- a/webapp/components/login_username.jsx
+++ b/webapp/components/login_username.jsx
@@ -6,6 +6,7 @@ import * as Client from 'utils/client.jsx';
import UserStore from 'stores/user_store.jsx';
import {injectIntl, intlShape, defineMessages, FormattedMessage} from 'react-intl';
+import {browserHistory} from 'react-router';
var holders = defineMessages({
badTeam: {
@@ -85,9 +86,9 @@ export default class LoginUsername extends React.Component {
const redirect = Utils.getUrlParameter('redirect');
if (redirect) {
- window.location.href = decodeURIComponent(redirect);
+ browserHistory.push(decodeURIComponent(redirect));
} else {
- window.location.href = '/' + name + '/channels/town-square';
+ browserHistory.push('/' + name + '/channels/town-square');
}
},
(err) => {