From ec975824f4c3bf9c164b7a7fa8a07bfb5890ab81 Mon Sep 17 00:00:00 2001 From: Vallari Agrawal Date: Sat, 21 Sep 2024 12:28:32 +0530 Subject: [PATCH] RunList: disable column filter on "total" This is because paddles does not support this filter so the component was breaks when the filter is used. Signed-off-by: Vallari Agrawal --- src/components/RunList/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/RunList/index.tsx b/src/components/RunList/index.tsx index 73e1c12..6a5eff4 100644 --- a/src/components/RunList/index.tsx +++ b/src/components/RunList/index.tsx @@ -175,6 +175,7 @@ const _columns: MRT_ColumnDef[] = [ accessorKey: "results.total", header: "total", size: 30, + enableColumnFilter: false, }, ];