From 348374fba5db8415d37d5cd8b897048b1300f415 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Tue, 4 Apr 2017 00:18:04 -0400 Subject: PLT-6098 Added Manage Teams modal to System Console users list (#5914) * Added Manage Teams modal to System Console users list * Localized ManageTeamsModal * Fixed borders between Manage Teams list items * Updated appearance of ManageTeamsModal * Fixed admin being redirected from system console when removing self from a team * Sorted teams in ManageTeamsModal * Updated Manage Teams styling --- webapp/actions/websocket_actions.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'webapp/actions/websocket_actions.jsx') diff --git a/webapp/actions/websocket_actions.jsx b/webapp/actions/websocket_actions.jsx index e07e3e217..ab798df28 100644 --- a/webapp/actions/websocket_actions.jsx +++ b/webapp/actions/websocket_actions.jsx @@ -251,7 +251,10 @@ function handleLeaveTeamEvent(msg) { Client.setTeamId(''); BrowserStore.removeGlobalItem('team'); BrowserStore.removeGlobalItem(msg.data.team_id); - GlobalActions.redirectUserToDefaultTeam(); + + if (!global.location.pathname.startsWith('/admin_console')) { + GlobalActions.redirectUserToDefaultTeam(); + } } } else { UserStore.removeProfileFromTeam(msg.data.team_id, msg.data.user_id); -- cgit v1.2.3-1-g7c22