From ff69b172101303bc329df9ed6c5ce0a101415c8d Mon Sep 17 00:00:00 2001 From: Emilien Chauvet Date: Thu, 13 Jul 2023 21:41:12 -0700 Subject: [PATCH] Reorder company columns (#656) --- .../table/components/companyColumns.tsx | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/front/src/modules/companies/table/components/companyColumns.tsx b/front/src/modules/companies/table/components/companyColumns.tsx index b92ea6a17..acea5e907 100644 --- a/front/src/modules/companies/table/components/companyColumns.tsx +++ b/front/src/modules/companies/table/components/companyColumns.tsx @@ -30,6 +30,20 @@ export const companyColumns: TableColumn[] = [ size: 100, cellComponent: , }, + { + id: 'accountOwner', + title: 'Account owner', + icon: , + size: 150, + cellComponent: , + }, + { + id: 'createdAt', + title: 'Creation', + icon: , + size: 150, + cellComponent: , + }, { id: 'employees', title: 'Employees', @@ -44,18 +58,4 @@ export const companyColumns: TableColumn[] = [ size: 170, cellComponent: , }, - { - id: 'createdAt', - title: 'Creation', - icon: , - size: 150, - cellComponent: , - }, - { - id: 'accountOwner', - title: 'Account owner', - icon: , - size: 150, - cellComponent: , - }, ];