From 2fccff9cb3efa6c8937ce9938c6ce6f2dfba8b62 Mon Sep 17 00:00:00 2001 From: David Whittaker Date: Tue, 17 Dec 2024 17:12:58 -0800 Subject: [PATCH] fix(ui): default incident project should be null --- src/dispatch/static/dispatch/src/case/type/NewEditSheet.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispatch/static/dispatch/src/case/type/NewEditSheet.vue b/src/dispatch/static/dispatch/src/case/type/NewEditSheet.vue index fb8ffe7ba56d..73641b98e98a 100644 --- a/src/dispatch/static/dispatch/src/case/type/NewEditSheet.vue +++ b/src/dispatch/static/dispatch/src/case/type/NewEditSheet.vue @@ -185,7 +185,7 @@ export default { data() { return { visibilities: ["Open", "Restricted"], - incidentProject: {}, + incidentProject: null, } },