From 4bd08efc9af8b69488b5d573550e0bb9a291f2fd Mon Sep 17 00:00:00 2001 From: ghotso <168240713+ghotso@users.noreply.github.com> Date: Mon, 18 Aug 2025 23:12:35 +0200 Subject: [PATCH] fix(incidents): display assignee in BasicInfoSection via assigned_users fallback --- .../incident/detail-dialog/sections/BasicInfoSection.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/src/components/schedule-incident/incident/detail-dialog/sections/BasicInfoSection.tsx b/application/src/components/schedule-incident/incident/detail-dialog/sections/BasicInfoSection.tsx index e343a2d..062ee01 100644 --- a/application/src/components/schedule-incident/incident/detail-dialog/sections/BasicInfoSection.tsx +++ b/application/src/components/schedule-incident/incident/detail-dialog/sections/BasicInfoSection.tsx @@ -50,8 +50,8 @@ export const BasicInfoSection: React.FC = ({ incident, as {assignedUser.full_name || assignedUser.username} - ) : incident.assigned_to ? ( - {incident.assigned_to} + ) : (incident.assigned_users || incident.assigned_to) ? ( + {incident.assigned_users || incident.assigned_to} ) : ( {t('unassigned')} )}