Fix text log logo for outgoing

This commit is contained in:
Eli Ribble 2026-04-28 07:45:51 +00:00
parent 175fd8d0fb
commit 878b43c0a6
No known key found for this signature in database

View file

@ -1,7 +1,7 @@
<template>
<div>
<div class="text-muted">
<i class="bi" :class="typeToIcon()" />{{ typeToTitle() }}
<i class="bi" :class="typeToIcon()" /> {{ typeToTitle() }}
</div>
<div>{{ entry.message }}</div>
<small class="text-muted">{{ formatDate(entry.created) }}</small>
@ -22,7 +22,7 @@ function typeToIcon(): string {
if (props.entry.type == "message-text-incoming") {
return "bi-box-arrow-in-left";
} else if (props.entry.type == "message-text-outgoing") {
return "bi-box-arrow-out-right";
return "bi-box-arrow-right";
} else if (props.entry.type == "created") {
return "bi-stars";
} else {