summary refs log tree commit diff
path: root/webclient
diff options
context:
space:
mode:
authorKegan Dougal <kegan@matrix.org>2014-09-08 11:17:44 -0700
committerKegan Dougal <kegan@matrix.org>2014-09-08 11:17:44 -0700
commit0627366b2fb38e0786d8ec225601d90c023a058b (patch)
tree8cc3173fbaf0590e528c75720460f88e57131e58 /webclient
parentRollback if we try and insert duplicate events (diff)
downloadsynapse-0627366b2fb38e0786d8ec225601d90c023a058b.tar.xz
Sort the public room list by display name.
Diffstat (limited to 'webclient')
-rw-r--r--webclient/home/home.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/home/home.html b/webclient/home/home.html
index 7240e79f86..e3a49bb142 100644
--- a/webclient/home/home.html
+++ b/webclient/home/home.html
@@ -24,7 +24,7 @@
 
     <h3>Public rooms</h3>
     
-    <div class="public_rooms" ng-repeat="room in public_rooms">
+    <div class="public_rooms" ng-repeat="room in public_rooms | orderBy:'room_display_name'">
         <div>
             <a href="#/room/{{ room.room_alias ? room.room_alias : room.room_id }}" >{{ room.room_display_name }}</a>
         </div>