Skip to content

Commit

Permalink
gui hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
DJ2LS committed Mar 2, 2025
1 parent 978a706 commit 68363d1
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions freedata_gui/src/components/chat_messages_sent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,9 @@
<div class="card-footer p-1 border-top-0">
<p class="text p-0 m-0 mb-1 me-1 text-end">
<span class="badge mr-2" :class="{
'text-bg-danger': message.status == 'failed',
'text-bg-primary': message.status == 'transmitting',
'text-bg-secondary': message.status == 'transmitted',
'text-bg-secondary': message.status == 'queued',
'text-bg-danger': message.status === 'failed',
'text-bg-primary': message.status === 'transmitting',
'text-bg-secondary': message.status === 'transmitted' || message.status === 'queued'
}"
>
{{ message.status }}
Expand Down

0 comments on commit 68363d1

Please sign in to comment.