From 3f1fca9463df27e8f795356ab6873d0d5bf4d634 Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Thu, 22 Jun 2017 06:36:46 -0400 Subject: PLT-6759 Show deactivated users in GMs (#6703) * Show deactivated users in GMs * Fix runtime error when DMing deactivated user --- webapp/components/channel_header.jsx | 4 ++-- webapp/components/member_list_channel/member_list_channel.jsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'webapp/components') diff --git a/webapp/components/channel_header.jsx b/webapp/components/channel_header.jsx index 7116b435c..a409baec6 100644 --- a/webapp/components/channel_header.jsx +++ b/webapp/components/channel_header.jsx @@ -73,7 +73,7 @@ export default class ChannelHeader extends React.Component { getStateFromStores() { const channel = ChannelStore.get(this.props.channelId); const stats = ChannelStore.getStats(this.props.channelId); - const users = UserStore.getProfileListInChannel(this.props.channelId); + const users = UserStore.getProfileListInChannel(this.props.channelId, false, true); let otherUserId = null; if (channel && channel.type === 'D') { @@ -227,7 +227,7 @@ export default class ChannelHeader extends React.Component { AppDispatcher.handleViewAction({ type: ActionTypes.TOGGLE_DM_MODAL, value: true, - startingUsers: UserStore.getProfileListInChannel(this.props.channelId, true) + startingUsers: UserStore.getProfileListInChannel(this.props.channelId, true, false) }); } diff --git a/webapp/components/member_list_channel/member_list_channel.jsx b/webapp/components/member_list_channel/member_list_channel.jsx index 8dbdd37f2..f33d14a27 100644 --- a/webapp/components/member_list_channel/member_list_channel.jsx +++ b/webapp/components/member_list_channel/member_list_channel.jsx @@ -45,7 +45,7 @@ export default class MemberListChannel extends React.Component { const stats = ChannelStore.getCurrentStats(); this.state = { - users: UserStore.getProfileListInChannel(), + users: UserStore.getProfileListInChannel(ChannelStore.getCurrentId(), false, true), teamMembers: Object.assign({}, TeamStore.getMembersInTeam()), channelMembers: Object.assign({}, ChannelStore.getMembersInChannel()), total: stats.member_count, @@ -81,7 +81,7 @@ export default class MemberListChannel extends React.Component { if (this.term) { users = searchProfilesInCurrentChannel(store.getState(), this.term); } else { - users = UserStore.getProfileListInChannel(); + users = UserStore.getProfileListInChannel(ChannelStore.getCurrentId(), false, true); } this.setState({ -- cgit v1.2.3-1-g7c22