diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/react/components/channel_header.jsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/web/react/components/channel_header.jsx b/web/react/components/channel_header.jsx index 428d3ed81..f4e4078a5 100644 --- a/web/react/components/channel_header.jsx +++ b/web/react/components/channel_header.jsx @@ -44,8 +44,13 @@ var ExtraMembers = React.createClass({ var count = this.props.members.length == 0 ? "-" : this.props.members.length; count = this.props.members.length > 19 ? "20+" : count; var data_content = ""; + var sortedMembers = this.state.extra_info.members - this.props.members.forEach(function(m) { + sortedMembers.sort(function(a,b) { + return a.username.localeCompare(b.username) + }) + + sortedMembers.forEach(function(m) { data_content += "<div style='white-space: nowrap'>" + m.username + "</div>"; }); |