Skip to content
Snippets Groups Projects
Commit df50a682 authored by Kegan Dougal's avatar Kegan Dougal
Browse files

Display public room topics if they exist on the public room list.

parent 324020d5
No related branches found
Tags v1.47.0rc3
No related merge requests found
......@@ -276,6 +276,13 @@ a:active { color: #000; }
float: right;
}
.publicRoomTopic {
color: #888;
font-size: 12px;
padding-right: 5px;
float: right;
}
#roomName {
font-size: 16px;
text-align: right;
......
......@@ -34,6 +34,9 @@
ng-show="room.num_joined_members">
{{ room.num_joined_members }} {{ room.num_joined_members == 1 ? 'user' : 'users' }}
</div>
<div class="publicRoomTopic" ng-show="room.topic">
{{ room.topic }}
</div>
</div>
</div>
<br/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment