Skip to content

Commit

Permalink
Fixes an issue with select missing project scope (#3140)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgliss authored Mar 23, 2023
1 parent fa73df0 commit 68815ee
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/dispatch/static/dispatch/src/signal/NewEditDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,14 @@
<v-card-text>
<v-row no-gutters>
<v-col cols="12">
<case-type-select label="Case Type" v-model="case_type" />
<case-type-select label="Case Type" :project="project" v-model="case_type" />
</v-col>
<v-col cols="12">
<case-priority-select label="Case Priority" v-model="case_priority" />
<case-priority-select
label="Case Priority"
:project="project"
v-model="case_priority"
/>
</v-col>
</v-row>
</v-card-text>
Expand Down

0 comments on commit 68815ee

Please sign in to comment.