Min width for account column
This commit is contained in:
parent
8811afbad8
commit
3bf734f5e7
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue