Skip to content

Commit

Permalink
Fix labels
Browse files Browse the repository at this point in the history
  • Loading branch information
AchoArnold committed Jun 11, 2024
1 parent 232b516 commit b45fa86
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web/pages/search-messages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,13 @@
<v-icon small color="error">{{ mdiCallMissed }}</v-icon>
missed call
</span>
<span v-if="props.item.type === 'mobile-terminated'">
<span v-if="props.item.type === 'mobile-originated'">
<v-icon small>{{ mdiCallReceived }}</v-icon>
outbound
inbound
</span>
<span v-if="props.item.type === 'mobile-originated'">
<span v-if="props.item.type === 'mobile-terminated'">
<v-icon small color="secondary">{{ mdiCallMade }}</v-icon>
inbound
outbound
</span>
</template>
<template #[`item.status`]="props">
Expand Down

0 comments on commit b45fa86

Please sign in to comment.