PLT-3844 Fix Not redirected out of system console after demoting self from System Admin (#3797)

Этот коммит содержится в:
enahum
2016-08-15 08:20:38 -05:00
коммит произвёл Joram Wilander
родитель 6d6f1c8d8c
Коммит b972d2adba

Просмотреть файл

@@ -11,7 +11,6 @@ import TeamStore from 'stores/team_store.jsx';
import {FormattedMessage, FormattedHTMLMessage} from 'react-intl';
import React from 'react';
import {browserHistory} from 'react-router/es6';
export default class UserItem extends React.Component {
constructor(props) {
@@ -183,9 +182,10 @@ export default class UserItem extends React.Component {
const teamUrl = TeamStore.getCurrentTeamUrl();
if (teamUrl) {
browserHistory.push(teamUrl);
// the channel is added to the URL cause endless loading not being fully fixed
window.location.href = teamUrl + '/channels/town-square';
} else {
browserHistory.push('/');
window.location.href = '/';
}
},
(err) => {