From 9cce24c6402b52007ac484d0412fe7e04257f3c9 Mon Sep 17 00:00:00 2001 From: Vallari Agrawal Date: Sat, 21 Sep 2024 12:26:50 +0530 Subject: [PATCH 1/2] RunList: enable filter by user Signed-off-by: Vallari Agrawal --- src/components/RunList/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/RunList/index.tsx b/src/components/RunList/index.tsx index cc2835b..73e1c12 100644 --- a/src/components/RunList/index.tsx +++ b/src/components/RunList/index.tsx @@ -69,7 +69,6 @@ const _columns: MRT_ColumnDef[] = [ accessorKey: "user", header: "user", maxSize: 45, - enableColumnFilter: false, enableColumnActions: false, }, { From ccf67d34bfb2595cdb2fba94ad63786f3bc9e5bd Mon Sep 17 00:00:00 2001 From: Vallari Agrawal Date: Sat, 21 Sep 2024 12:28:32 +0530 Subject: [PATCH 2/2] 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, }, ];