Skip to content

Commit

Permalink
Fixes issue with case escalation dialog (#3706)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvilanova authored Aug 18, 2023
1 parent 44ce509 commit 3d07c4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dispatch/static/dispatch/src/case/EscalateDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
)
},
Expand Down

0 comments on commit 3d07c4e

Please sign in to comment.