From 5ef3e01c8905795ca29600bab3f62578ffe0673d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Falc=C3=B3n?= Date: Mon, 29 Jun 2026 17:51:51 +0200 Subject: [PATCH] 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. --- resources/js/components/transactions/transaction-columns.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/components/transactions/transaction-columns.tsx b/resources/js/components/transactions/transaction-columns.tsx index 5c9a2499..00e8d26d 100644 --- a/resources/js/components/transactions/transaction-columns.tsx +++ b/resources/js/components/transactions/transaction-columns.tsx @@ -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 (