summaryrefslogtreecommitdiffstats
path: root/web/react
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-10-22 12:55:35 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-10-22 12:55:35 -0400
commit9483ef66d3ae6272e05348339b62bc4d30165d88 (patch)
tree5bf9acd3550007230629d53beeaa35c0c92d4fa7 /web/react
parent649f42e3fc706f8fa829276bcdb825381bc703f2 (diff)
downloadchat-9483ef66d3ae6272e05348339b62bc4d30165d88.tar.gz
chat-9483ef66d3ae6272e05348339b62bc4d30165d88.tar.bz2
chat-9483ef66d3ae6272e05348339b62bc4d30165d88.zip
Changed Direct Channel modal to only show active users
Diffstat (limited to 'web/react')
-rw-r--r--web/react/components/more_direct_channels.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/more_direct_channels.jsx b/web/react/components/more_direct_channels.jsx
index d5b44d86b..9b59db424 100644
--- a/web/react/components/more_direct_channels.jsx
+++ b/web/react/components/more_direct_channels.jsx
@@ -31,7 +31,7 @@ export default class MoreDirectChannels extends React.Component {
getUsersFromStore() {
const currentId = UserStore.getCurrentId();
- const profiles = UserStore.getProfiles();
+ const profiles = UserStore.getActiveOnlyProfiles();
const users = [];
for (const id in profiles) {