[polari] userList: Fix sorting by the user aliases



commit 8082c2a019dd047a2321b865391753395356c73a
Author: Mathieu Bridon <bochecha fedoraproject org>
Date:   Sun Oct 6 13:20:20 2013 +0800

    userList: Fix sorting by the user aliases

 src/userList.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/userList.js b/src/userList.js
index 5d8bcab..0287829 100644
--- a/src/userList.js
+++ b/src/userList.js
@@ -77,7 +77,7 @@ const UserList = new Lang.Class({
     },
 
     _sort: function(row1, row2) {
-        return row1.user.alias.localeCompare(row2.user.alias);
+        return row1._member.alias.localeCompare(row2._member.alias);
     },
 
     _updateHeader: function(row, before) {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]