N-FIN-20: add fixed width on actions column

This commit is contained in:
Markus Thielker 2024-03-11 11:22:18 +01:00
parent 2d578df9eb
commit 6dd2fde2b5
No known key found for this signature in database

View file

@ -66,7 +66,8 @@ export function DataTable<TData, TValue>({
data-state={row.getIsSelected() && 'selected'}
>
{row.getVisibleCells().map((cell) => (
<TableCell key={cell.id}>
<TableCell key={cell.id}
className={cell.id.endsWith('actions') ? 'w-[120px]' : ''}>
{flexRender(cell.column.columnDef.cell, cell.getContext())}
</TableCell>
))}