Reorder company columns (#656)

This commit is contained in:
Emilien Chauvet
2023-07-13 21:41:12 -07:00
committed by GitHub
parent 03364330d1
commit ff69b17210

View File

@ -30,6 +30,20 @@ export const companyColumns: TableColumn[] = [
size: 100,
cellComponent: <EditableCompanyDomainNameCell />,
},
{
id: 'accountOwner',
title: 'Account owner',
icon: <IconUser size={16} />,
size: 150,
cellComponent: <EditableCompanyAccountOwnerCell />,
},
{
id: 'createdAt',
title: 'Creation',
icon: <IconCalendarEvent size={16} />,
size: 150,
cellComponent: <EditableCompanyCreatedAtCell />,
},
{
id: 'employees',
title: 'Employees',
@ -44,18 +58,4 @@ export const companyColumns: TableColumn[] = [
size: 170,
cellComponent: <EditableCompanyAddressCell />,
},
{
id: 'createdAt',
title: 'Creation',
icon: <IconCalendarEvent size={16} />,
size: 150,
cellComponent: <EditableCompanyCreatedAtCell />,
},
{
id: 'accountOwner',
title: 'Account owner',
icon: <IconUser size={16} />,
size: 150,
cellComponent: <EditableCompanyAccountOwnerCell />,
},
];