Skip to content

Commit

Permalink
another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
grishka committed Oct 29, 2023
1 parent c204e18 commit 3730306
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/templates/desktop/mail_history.twig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</div>
{% for msg in items %}
<div class="messageRow{{ msg.unread ? ' unread' : '' }}">
<div class="name {{ msg.senderID==currentUser.id ? 'self' : 'peer' }}"><a href="{{ profileURL(msg.senderID) }}" class="ellipsize">{{ users[msg.senderID] | firstName }}</a></div>
<div class="name {{ msg.senderID==currentUser.id ? 'self' : 'peer' }}"><a href="{{ profileURL(msg.senderID) }}" class="ellipsize">{{ users[msg.senderID] | name('first') }}</a></div>
<div class="content">{{ msg.text | postprocessHTML }}{% if msg.attachments is not empty %}{{ renderAttachments(msg.processedAttachments, null) }}{% endif %}</div>
<div class="time"><a href="/my/mail/messages/{{ msg.encodedID }}" data-tooltip="{{ LD(msg.createdAt) }}">{{ LD(msg.createdAt, format="timeOrDay") }}</a></div>
</div>
Expand Down

0 comments on commit 3730306

Please sign in to comment.