Fix width too big by adding min-width constraints

This commit is contained in:
Owen
2026-08-24 14:31:17 -04:00
parent 85b40b7164
commit 26f9026621
2 changed files with 12 additions and 8 deletions
+7 -3
View File
@@ -524,9 +524,13 @@ export function LogDataTable<TData, TValue>({
}
className="p-4 bg-muted/50"
>
{renderExpandedRow(
row.original
)}
{/* w-0 min-w-full keeps this cell's content from */}
{/* blowing out the table's auto column widths */}
<div className="w-0 min-w-full">
{renderExpandedRow(
row.original
)}
</div>
</TableCell>
</TableRow>
)