Min width for account column

This commit is contained in:
Víctor Falcón 2025-12-14 17:03:03 +01:00
parent 8811afbad8
commit 3bf734f5e7
1 changed files with 5 additions and 1 deletions

View File

@ -127,8 +127,12 @@ export function createTransactionColumns({
{
id: 'account',
accessorKey: 'account',
meta: { label: 'Account' },
header: 'Account',
meta: {
label: 'Account',
cellClassName:
'!min-w-[125px] whitespace-normal',
},
cell: ({ row }) => {
const transaction = row.original;
if (!transaction.account) {