fix(transactions): let date column size to its content (#610)
## What Remove the fixed `max-w-[90px]` cap (and `pr-1`) on the transaction date cell so the date column sizes to its content instead of wrapping awkwardly. ## Why The 90px cap forced the formatted date to wrap onto two lines in the transactions table.
This commit is contained in:
parent
300756e553
commit
5ef3e01c89
|
|
@ -99,7 +99,7 @@ export function createTransactionColumns({
|
|||
accessorKey: 'transaction_date',
|
||||
meta: {
|
||||
label: __('Date'),
|
||||
cellClassName: 'max-w-[90px] whitespace-normal pr-1',
|
||||
cellClassName: 'whitespace-normal',
|
||||
},
|
||||
header: ({ column }) => {
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in New Issue