1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-01-16 02:47:11 +02:00

Correctly case Cc and Bcc in UI

This commit is contained in:
Ralph Slooten 2023-02-11 22:54:45 +13:00
parent 6efe99ffdf
commit 7cb46ba869

View File

@ -139,7 +139,7 @@ export default {
</td>
</tr>
<tr v-if="message.Cc && message.Cc.length" class="small">
<th>CC</th>
<th>Cc</th>
<td class="privacy">
<span v-for="(t, i) in message.Cc">
<template v-if="i > 0">,</template>
@ -147,7 +147,7 @@ export default {
</td>
</tr>
<tr v-if="message.Bcc && message.Bcc.length" class="small">
<th>BCC</th>
<th>Bcc</th>
<td class="privacy">
<span v-for="(t, i) in message.Bcc">
<template v-if="i > 0">,</template>