mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-02-03 10:29:59 -05:00
Fixed SYWEB-28: show displayname changes in recents
This commit is contained in:
parent
6f5970a2e1
commit
b02bb18a70
@ -33,6 +33,8 @@
|
||||
|
||||
<div ng-hide="room.membership === 'invite'" ng-switch="lastMsg.type">
|
||||
<div ng-switch-when="m.room.member">
|
||||
<span ng-switch="lastMsg.changedKey">
|
||||
<span ng-switch-when="membership">
|
||||
<span ng-if="'join' === lastMsg.content.membership">
|
||||
{{ lastMsg.state_key | mUserDisplayName: room.room_id }} joined
|
||||
</span>
|
||||
@ -57,6 +59,11 @@
|
||||
: {{ lastMsg.content.reason }}
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
<span ng-switch-when="displayname">
|
||||
{{ lastMsg.user_id }} changed their display name from {{ lastMsg.prev_content.displayname }} to {{ lastMsg.content.displayname }}
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div ng-switch-when="m.room.message">
|
||||
|
Loading…
x
Reference in New Issue
Block a user