Skip to content

Commit

Permalink
Preview case tag column as 'tag_type.name/tag.name'
Browse files Browse the repository at this point in the history
  • Loading branch information
metroid-samus committed Dec 12, 2024
1 parent 953691c commit df5c04c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/dispatch/static/dispatch/src/case/TableExportDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@
<template #item.status="{ item }">
<case-status :status="item.status" :id="item.id" />
</template>
<template #item.tags="{ item }">
<span v-for="tag in item.tags" :key="tag">
<v-chip> {{ tag.tag_type.name }}/{{ tag.name }} </v-chip>
</span>
</template>
</v-data-table>
<v-spacer />
<v-btn @click="closeExport()" variant="text"> Cancel </v-btn>
Expand Down

0 comments on commit df5c04c

Please sign in to comment.