Order users in the group member list with admins first

pull/21833/head
Luke Barnard 2017-11-08 11:51:58 +00:00
parent c1d9d3714a
commit e3e161fbea
1 changed files with 2 additions and 8 deletions

View File

@ -108,15 +108,9 @@ export default withMatrixClient(React.createClass({
if (!uniqueMembers[m.userId]) uniqueMembers[m.userId] = m;
});
memberList = Object.keys(uniqueMembers).map((userId) => uniqueMembers[userId]);
// Descending sort on isPrivileged = true = 1 to isPrivileged = false = 0
memberList.sort((a, b) => {
// TODO: should put admins at the top: we don't yet have that info
if (a < b) {
return -1;
} else if (a > b) {
return 1;
} else {
return 0;
}
return b.isPrivileged - a.isPrivileged;
});
const memberTiles = memberList.map((m) => {