1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-04-21 12:17:05 +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> </td>
</tr> </tr>
<tr v-if="message.Cc && message.Cc.length" class="small"> <tr v-if="message.Cc && message.Cc.length" class="small">
<th>CC</th> <th>Cc</th>
<td class="privacy"> <td class="privacy">
<span v-for="(t, i) in message.Cc"> <span v-for="(t, i) in message.Cc">
<template v-if="i > 0">,</template> <template v-if="i > 0">,</template>
@ -147,7 +147,7 @@ export default {
</td> </td>
</tr> </tr>
<tr v-if="message.Bcc && message.Bcc.length" class="small"> <tr v-if="message.Bcc && message.Bcc.length" class="small">
<th>BCC</th> <th>Bcc</th>
<td class="privacy"> <td class="privacy">
<span v-for="(t, i) in message.Bcc"> <span v-for="(t, i) in message.Bcc">
<template v-if="i > 0">,</template> <template v-if="i > 0">,</template>