Merge fix: wrap audit-log details so rows stay inside the card

This commit is contained in:
2026-07-18 02:49:13 +02:00
+5 -2
View File
@@ -80,9 +80,12 @@ export function auditColumns(
render: (r) => {
const change = changeText(r);
return (
// break-words (wrap), NOT truncate: in the auto-layout table a `truncate` (nowrap) cell
// sizes to its longest row, so one long summary/change stretched the whole table past the
// card (the row rules bled into the page). Wrapping keeps every row inside the container.
<div className="min-w-0">
{r.summary && <div className="truncate">{r.summary}</div>}
{change && <div className="text-[11px] text-muted truncate">{change}</div>}
{r.summary && <div className="break-words">{r.summary}</div>}
{change && <div className="text-[11px] text-muted break-words">{change}</div>}
</div>
);
},