Skip to content

Commit

Permalink
Add a Required column to the TagType table (#4448)
Browse files Browse the repository at this point in the history
  • Loading branch information
wssheldon authored Feb 26, 2024
1 parent 630d393 commit b9c5fc0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/dispatch/static/dispatch/src/tag_type/Table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
<template #item.discoverability="{ item }">
<span>{{ combine(item) }}</span>
</template>
<template #item.required="{ value }">
<v-checkbox-btn :model-value="value" disabled />
</template>
<template #item.exclusive="{ value }">
<v-checkbox-btn :model-value="value" disabled />
</template>
Expand Down Expand Up @@ -88,6 +91,7 @@ export default {
{ title: "Name", value: "name", sortable: true },
{ title: "Description", value: "description", sortable: false },
{ title: "Discoverability", value: "discoverability", sortable: false },
{ title: "Required", value: "required", sortable: false },
{ title: "Exclusive", value: "exclusive", sortable: false },
{ title: "", key: "data-table-actions", sortable: false, align: "end" },
],
Expand Down

0 comments on commit b9c5fc0

Please sign in to comment.