Skip to content

Commit

Permalink
fix: add badge
Browse files Browse the repository at this point in the history
  • Loading branch information
michellealva authored Jul 30, 2023
1 parent ff98a5e commit d057165
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion desk/src/pages/portal/TicketList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,12 @@
</div>
</template>
<template #status="{ data }">
{{ transformStatus(data.status) }}
<Badge
:label="data.status"
:theme="statusColormap[data.status]"
variant="subtle"
/>
</template>
<template #creation="{ data }">
{{ dayjs(data.creation).fromNow() }}
Expand Down

0 comments on commit d057165

Please sign in to comment.