prevent site name from wrapping

This commit is contained in:
miloschwartz 2025-06-27 16:46:03 -04:00
parent 809a135721
commit cc930ebf53
No known key found for this signature in database

View file

@ -201,11 +201,19 @@ export default function SitesTable({ sites, orgId }: SitesTableProps) {
onClick={() =>
column.toggleSorting(column.getIsSorted() === "asc")
}
className="hidden md:flex whitespace-nowrap"
>
{t('site')}
<ArrowUpDown className="ml-2 h-4 w-4" />
</Button>
);
},
cell: ({ row }) => {
return (
<div className="hidden md:block whitespace-nowrap">
{row.original.nice}
</div>
);
}
},
{