mirror of
https://github.com/axllent/mailpit.git
synced 2025-04-04 22:34:31 +02:00
UI: Display unknown recipients as as Undisclosed recipients
This commit is contained in:
parent
9501b460c5
commit
3c81e152e6
@ -270,7 +270,7 @@ export default {
|
|||||||
return message.To[i].Address;
|
return message.To[i].Address;
|
||||||
}
|
}
|
||||||
|
|
||||||
return '[ Unknown ]';
|
return '[ Undisclosed recipients ]';
|
||||||
},
|
},
|
||||||
|
|
||||||
getRelativeCreated: function(message) {
|
getRelativeCreated: function(message) {
|
||||||
|
@ -110,10 +110,11 @@ export default {
|
|||||||
<tr class="small">
|
<tr class="small">
|
||||||
<th>To</th>
|
<th>To</th>
|
||||||
<td class="privacy">
|
<td class="privacy">
|
||||||
<span v-for="(t, i) in message.To">
|
<span v-if="message.To" v-for="(t, i) in message.To">
|
||||||
<template v-if="i > 0">,</template>
|
<template v-if="i > 0">,</template>
|
||||||
{{ t.Name + " <" + t.Address +">" }}
|
{{ t.Name + " <" + t.Address +">" }}
|
||||||
</span>
|
</span>
|
||||||
|
<span v-else>Undisclosed recipients</span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr v-if="message.Cc" class="small">
|
<tr v-if="message.Cc" class="small">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user