diff --git a/zephyr/static/js/subs.js b/zephyr/static/js/subs.js index 39d95ffa99..18d14534f3 100644 --- a/zephyr/static/js/subs.js +++ b/zephyr/static/js/subs.js @@ -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('
  • ' + elem); }); },