prevent column overflow

This commit is contained in:
Francis Cao 2024-01-16 10:48:26 -08:00
parent 0b8e90c0c8
commit 5df49e9273

View File

@ -21,7 +21,7 @@ export function UsersTable({ data = [] }: { data: any[] }) {
)
}
</GridColumn>
<GridColumn name="created" label={formatMessage(labels.created)} width={'100px'}>
<GridColumn name="created" label={formatMessage(labels.created)} width={'120px'}>
{row =>
formatDistance(new Date(row.createdAt), new Date(), {
addSuffix: true,