fix(incidents): show assignee in table using assigned_users with fallback to assigned_to

This commit is contained in:
ghotso
2025-08-18 22:56:31 +02:00
committed by ghotso
parent d4434a64e1
commit 7b18806066
@@ -86,7 +86,7 @@ export const IncidentTableRow = memo(({
</Badge> </Badge>
</TableCell> </TableCell>
<TableCell> <TableCell>
<AssignedUserCell userId={localItem.assigned_to} /> <AssignedUserCell userId={localItem.assigned_users || localItem.assigned_to} />
</TableCell> </TableCell>
<TableCell className="text-right" onClick={(e) => e.stopPropagation()}> <TableCell className="text-right" onClick={(e) => e.stopPropagation()}>
<div className="flex justify-end items-center space-x-2"> <div className="flex justify-end items-center space-x-2">