From ea8a3295e9234ff538001ec696dde497235da072 Mon Sep 17 00:00:00 2001 From: Vasily Zubarev Date: Thu, 10 Apr 2025 13:09:32 +0200 Subject: [PATCH] fix #24: disable sorting by extra columns --- components/transactions/list.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/transactions/list.tsx b/components/transactions/list.tsx index a89fdd4..8c393c2 100644 --- a/components/transactions/list.tsx +++ b/components/transactions/list.tsx @@ -134,7 +134,7 @@ const getFieldRenderer = (field: Field): FieldRenderer => { name: field.name, code: field.code, classes: "", - sortable: true, + sortable: false, } } }