Skip to content

Commit

Permalink
Adds Create Case checkbox to Signal Definition table
Browse files Browse the repository at this point in the history
  • Loading branch information
wssheldon committed Oct 2, 2023
1 parent d277d5b commit fd5866b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/dispatch/static/dispatch/src/signal/Table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@
:loading="loading"
loading-text="Loading... Please wait"
>
<template #item.create_case="{ item }">
<v-simple-checkbox v-model="item.create_case" disabled />
</template>
<template #item.enabled="{ item }">
<v-simple-checkbox v-model="item.enabled" disabled />
</template>
Expand Down Expand Up @@ -118,6 +121,7 @@ export default {
{ text: "Name", value: "name", align: "left", width: "10%" },
{ text: "Variant", value: "variant", sortable: true },
{ text: "Description", value: "description", sortable: false },
{ text: "Create Case", value: "create_case", sortable: true, width: "100px" },
{ text: "Enabled", value: "enabled", sortable: true },
{ text: "Owner", value: "owner" },
{ text: "Case Type", value: "case_type" },
Expand Down

0 comments on commit fd5866b

Please sign in to comment.