From 3d07c4e9486c0fdc072dd2d8976c2a2e162a830f Mon Sep 17 00:00:00 2001 From: Marc Vilanova <39573146+mvilanova@users.noreply.github.com> Date: Fri, 18 Aug 2023 10:43:29 -0700 Subject: [PATCH] Fixes issue with case escalation dialog (#3706) --- src/dispatch/static/dispatch/src/case/EscalateDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispatch/static/dispatch/src/case/EscalateDialog.vue b/src/dispatch/static/dispatch/src/case/EscalateDialog.vue index 2657ab8a5d96..968f66fd704c 100644 --- a/src/dispatch/static/dispatch/src/case/EscalateDialog.vue +++ b/src/dispatch/static/dispatch/src/case/EscalateDialog.vue @@ -87,7 +87,7 @@ export default { this.incidentDescription = this.caseDescription this.incidentTitle = this.caseTitle this.incidentProject = this.caseProject ? this.caseProject : null - this.incidentType = this.caseType.incident_type ? this.caseType : null + this.incidentType = this.caseType.incident_type ? this.caseType.incident_type : null } ) },