diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-09-06 09:53:39 -0700 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-09-06 09:53:39 -0700 |
commit | 92800afd95c665500b0aae38e47e0160c41cb3a2 (patch) | |
tree | f16cf3b4198d14f63a840b791535dd39fe2edf40 /webclient | |
parent | https when loading recaptcha js (diff) | |
download | synapse-92800afd95c665500b0aae38e47e0160c41cb3a2.tar.xz |
Use the room_display_name when presenting on the home page, and not the room_alias which may not be set.
Diffstat (limited to 'webclient')
-rw-r--r-- | webclient/home/home.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/home/home.html b/webclient/home/home.html index c1f9643839..7240e79f86 100644 --- a/webclient/home/home.html +++ b/webclient/home/home.html @@ -26,7 +26,7 @@ <div class="public_rooms" ng-repeat="room in public_rooms"> <div> - <a href="#/room/{{ room.room_alias ? room.room_alias : room.room_id }}" >{{ room.room_alias }}</a> + <a href="#/room/{{ room.room_alias ? room.room_alias : room.room_id }}" >{{ room.room_display_name }}</a> </div> </div> <br/> |