summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-10-22 21:39:12 -0700
committerCorey Hulen <corey@hulen.com>2015-10-22 21:39:12 -0700
commit826c04732e380570419375958177d31f59d641ec (patch)
tree2716f64779e8ffc315cede3ef7e0cf728796f9d4 /web
parent020e13944751b74647c70950a8720dbc4eec902e (diff)
parent9483ef66d3ae6272e05348339b62bc4d30165d88 (diff)
downloadchat-826c04732e380570419375958177d31f59d641ec.tar.gz
chat-826c04732e380570419375958177d31f59d641ec.tar.bz2
chat-826c04732e380570419375958177d31f59d641ec.zip
Merge pull request #1147 from hmhealey/plt721
PLT-721 Changed Direct Channel modal to only show active users
Diffstat (limited to 'web')
-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 e0aeb3051..743e30854 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) {