diff options
author | Matthew Hodgson <matthew.hodgson@openmarket.com> | 2014-08-13 16:14:17 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew.hodgson@openmarket.com> | 2014-08-13 16:14:17 +0100 |
commit | 9d388cd35e9e1c54d1048e903f1df92e54968bc6 (patch) | |
tree | d211c10e98dd588cf46cfd4b936067322a54a9ea /webclient/room | |
parent | and tweak some more... (diff) | |
download | synapse-9d388cd35e9e1c54d1048e903f1df92e54968bc6.tar.xz |
timestamps
Diffstat (limited to 'webclient/room')
-rw-r--r-- | webclient/room/room.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/room/room.html b/webclient/room/room.html index 276c3caa5a..5e947a03e1 100644 --- a/webclient/room/room.html +++ b/webclient/room/room.html @@ -23,7 +23,7 @@ <tr ng-repeat="msg in messages" ng-class="msg.user_id === state.user_id ? 'mine' : ''"> <td class="leftBlock"> <div class="sender" ng-hide="messages[$index - 1].user_id === msg.user_id">{{ members[msg.user_id].displayname || msg.user_id }}</div> - <div class="timestamp">{{ msg.content.hsob_ts | date:'HH:mm:ss' }}</div> + <div class="timestamp">{{ msg.content.hsob_ts | date:'MMM d HH:mm:ss' }}</div> </td> <td class="avatar"> <img ng-src="{{ members[msg.user_id].avatar_url || 'img/default-profile.jpg' }}" width="32" height="32" |