forked from MirrorHub/synapse
Display public room topics if they exist on the public room list.
This commit is contained in:
parent
324020d5fe
commit
df50a6823f
2 changed files with 10 additions and 0 deletions
|
@ -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/>
|
||||
|
|
Loading…
Reference in a new issue