N-FIN-20: add fixed width on actions column
This commit is contained in:
parent
2d578df9eb
commit
6dd2fde2b5
1 changed files with 2 additions and 1 deletions
|
@ -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>
|
||||
))}
|
||||
|
|
Loading…
Add table
Reference in a new issue