Skip to content
Snippets Groups Projects
Commit 28dd3d01 authored by Patrick Bender's avatar Patrick Bender
Browse files

Fix displaying of mails with empty from field

parent d5c7dc5a
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@
event=""
class="left"
@click.native.prevent="$emit('toggleExpand', $event)">
<span class="sender">{{ envelope.from[0].label }}</span>
<span class="sender">{{ envelope.from && envelope.from[0] ? envelope.from[0].label : '' }}</span>
<div class="subject">
<span class="preview">
<!-- TODO: instead of subject it should be shown the first line of the message #2666 -->
......
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