From 2d94f020d0be544362672e41ac6f0cb0db15372c Mon Sep 17 00:00:00 2001 From: Matt Hook Date: Thu, 13 Jul 2023 11:47:53 +1200 Subject: [PATCH] fix react table filter placement (#9200) --- app/react/components/datatables/TableHeaderCell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/react/components/datatables/TableHeaderCell.tsx b/app/react/components/datatables/TableHeaderCell.tsx index e563b6eea..a2e8c014e 100644 --- a/app/react/components/datatables/TableHeaderCell.tsx +++ b/app/react/components/datatables/TableHeaderCell.tsx @@ -66,7 +66,7 @@ function SortWrapper({ type="button" onClick={() => onClick(!isSortedDesc)} className={clsx( - '!ml-0 h-full w-full border-none !bg-transparent !px-0 focus:border-none', + '!ml-0 h-full border-none !bg-transparent !px-0 focus:border-none', styles.sortable, isSorted && styles.sortingActive )}