1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-03-19 21:28:07 +02:00

Update wording for "no emails/results message"

This commit is contained in:
Ralph Slooten 2022-08-07 10:28:33 +12:00
parent c9c910ab7c
commit aba3c46eb1

@ -461,7 +461,14 @@ export default {
</div>
</a>
</div>
<div v-else class="text-muted my-3">No messages</div>
<div v-else class="text-muted my-3">
<span v-if="searching">
No results matching your search
</span>
<span v-else>
There are no emails in your mailbox
</span>
</div>
</div>
<Message v-if="message" :message="message" :mailbox="mailbox"></Message>