diff options
Diffstat (limited to 'webclient/rooms/rooms.html')
-rw-r--r-- | webclient/rooms/rooms.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webclient/rooms/rooms.html b/webclient/rooms/rooms.html index 5974bd940c..8edeb13ced 100644 --- a/webclient/rooms/rooms.html +++ b/webclient/rooms/rooms.html @@ -61,9 +61,9 @@ <h3>My rooms</h3> - <div class="rooms" ng-repeat="room in rooms"> + <div class="rooms" ng-repeat="(rm_id, room) in rooms"> <div> - <a href="#/room/{{ room.room_id }}" >{{ room.room_alias }}</a> + <a href="#/room/{{ rm_id }}" >{{ room.room_alias }}</a> {{room.membership === 'invite' ? ' (invited)' : ''}} </div> </div> <br/> |