mirror of https://github.com/zulip/zulip.git
Sort the subscription member lists
(imported from commit 54457c2cbe971cd8f29f0d682890c18f9ca05bd5)
This commit is contained in:
parent
1d4a34aeba
commit
17e92ebe13
|
@ -341,7 +341,7 @@ $(function () {
|
|||
dataType: 'json', // This seems to be ignored. We still get back an xhr.
|
||||
data: {stream: stream},
|
||||
success: function (data) {
|
||||
$.each(data.subscribers, function (idx, elem) {
|
||||
$.each(data.subscribers.sort(), function (idx, elem) {
|
||||
list.append('<li>' + elem);
|
||||
});
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue