From fc884a3014c7bf30b33c3aff2b5873a5fe87fe9b Mon Sep 17 00:00:00 2001 From: elforjani3 Date: Sun, 7 Mar 2021 21:16:31 +0200 Subject: [PATCH] fix(expense): Expense table. --- client/src/containers/Expenses/ExpensesLanding/components.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/containers/Expenses/ExpensesLanding/components.js b/client/src/containers/Expenses/ExpensesLanding/components.js index 2b4d1c89d..e60f9f70f 100644 --- a/client/src/containers/Expenses/ExpensesLanding/components.js +++ b/client/src/containers/Expenses/ExpensesLanding/components.js @@ -158,6 +158,7 @@ export function useExpensesTableColumns() { accessor: ExpenseAccountAccessor, width: 160, className: 'expense_account', + disableSortBy: true, }, { id: 'published', @@ -170,9 +171,9 @@ export function useExpensesTableColumns() { id: 'description', Header: formatMessage({ id: 'description' }), accessor: DescriptionAccessor, - disableSorting: true, width: 150, className: 'description', + disableSortBy: true, }, { id: 'actions',