From 70fdcc9ea6ad7ab919d2bfad1b713cd170d4798f Mon Sep 17 00:00:00 2001 From: ghotso <168240713+ghotso@users.noreply.github.com> Date: Mon, 18 Aug 2025 22:37:27 +0200 Subject: [PATCH] fix(incidents): include `assigned_users` in form submit so assignee is persisted --- .../schedule-incident/incident/hooks/useIncidentForm.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/application/src/components/schedule-incident/incident/hooks/useIncidentForm.ts b/application/src/components/schedule-incident/incident/hooks/useIncidentForm.ts index 13ca86f..124e9b9 100644 --- a/application/src/components/schedule-incident/incident/hooks/useIncidentForm.ts +++ b/application/src/components/schedule-incident/incident/hooks/useIncidentForm.ts @@ -57,6 +57,7 @@ export const useIncidentForm = (onSuccess: () => void, onClose: () => void) => { priority: data.priority, service_id: data.service_id, assigned_to: data.assigned_to, + assigned_users: data.assigned_to, // map to server field root_cause: data.root_cause, resolution_steps: data.resolution_steps, lessons_learned: data.lessons_learned,