diff --git a/plugins/tracker-resources/src/components/CreateIssue.svelte b/plugins/tracker-resources/src/components/CreateIssue.svelte
index e3b6bfc781..2538126653 100644
--- a/plugins/tracker-resources/src/components/CreateIssue.svelte
+++ b/plugins/tracker-resources/src/components/CreateIssue.svelte
@@ -101,6 +101,14 @@
object.priority = newPriority
}
+
+ const handleStatusChanged = (newStatus: IssueStatus | undefined) => {
+ if (newStatus === undefined) {
+ return
+ }
+
+ object.status = newStatus
+ }
@@ -135,7 +143,7 @@
/>
-
+
-
-