Add cell alignment and styling adjustments to actions column in proformas grid

This commit is contained in:
David Arranz 2026-07-08 19:33:18 +02:00
parent 4d1735e3d5
commit 00c647fe20

View File

@ -266,9 +266,11 @@ export function useProformasGridColumns(
meta: {
isActionsColumn: true,
headerClassName: "text-right",
cellClassName: "flex justify-end",
},
header: "Acciones",
enableSorting: false,
cell: ({ row }) => {
const proforma = row.original;
const isIssued = proforma.status === PROFORMA_STATUS.ISSUED;
@ -288,7 +290,7 @@ export function useProformasGridColumns(
<TooltipTrigger
render={
<Button
className="size-7 cursor-pointer text-muted-foreground hover:text-primary"
className="size-7 cursor-pointer text-muted-foreground hover:text-primary "
onClick={(event) => {
event.preventDefault();
event.stopPropagation();