Reorder company columns (#656)
This commit is contained in:
@ -30,6 +30,20 @@ export const companyColumns: TableColumn[] = [
|
|||||||
size: 100,
|
size: 100,
|
||||||
cellComponent: <EditableCompanyDomainNameCell />,
|
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',
|
id: 'employees',
|
||||||
title: 'Employees',
|
title: 'Employees',
|
||||||
@ -44,18 +58,4 @@ export const companyColumns: TableColumn[] = [
|
|||||||
size: 170,
|
size: 170,
|
||||||
cellComponent: <EditableCompanyAddressCell />,
|
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 />,
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user