diff --git a/src/dispatch/static/dispatch/src/incident/type/IncidentTypeSelect.vue b/src/dispatch/static/dispatch/src/incident/type/IncidentTypeSelect.vue index 48c44f4e41f9..992e3012ce7c 100644 --- a/src/dispatch/static/dispatch/src/incident/type/IncidentTypeSelect.vue +++ b/src/dispatch/static/dispatch/src/incident/type/IncidentTypeSelect.vue @@ -120,12 +120,15 @@ export default { sortBy: ["name"], descending: [false], itemsPerPage: this.numItems, + enabled: ["true"], } if (this.project) { - filterOptions.filters = { - project_id: this.project_id, - enabled: ["true"], + filterOptions = { + ...filterOptions, + filters: { + project: [this.project], + }, } }