diff --git a/admin-compliance/app/sdk/iace/[projectId]/mitigations/page.tsx b/admin-compliance/app/sdk/iace/[projectId]/mitigations/page.tsx index b755522..b9a0ae6 100644 --- a/admin-compliance/app/sdk/iace/[projectId]/mitigations/page.tsx +++ b/admin-compliance/app/sdk/iace/[projectId]/mitigations/page.tsx @@ -174,33 +174,33 @@ export default function MitigationsPage() { {isExpanded && items.length > 0 && (
{/* Table header */} -
-
+
+
selectAllInType(type)} className="accent-purple-600" title="Alle auswaehlen" />
-
Massnahme
-
Status
-
Gefaehrdung
+
Massnahme
+
Gefaehrdung
+
Status
{/* Rows */} {items.map((m) => (
-
+ className={`grid grid-cols-[24px_1fr_200px_80px] gap-2 px-4 py-2 border-t border-gray-50 dark:border-gray-700 hover:bg-gray-50 dark:hover:bg-gray-750 transition-colors ${selected.has(m.id) ? 'bg-purple-50 dark:bg-purple-900/10' : ''}`}> +
toggleSelect(m.id)} className="accent-purple-600" />
-
-
{m.title || ''}
- {m.description &&
{m.description}
} +
+
{m.title || ''}
+ {m.description &&
{m.description}
}
-
- -
-
+
{(m.linked_hazard_names || []).join(', ') || '-'}
+
+ +
))}