From 80de0f48d7f181ef14a24d075654845acce64841 Mon Sep 17 00:00:00 2001 From: Tanja Schellmann Date: Fri, 6 Mar 2026 10:40:48 +0100 Subject: [PATCH] Fix duplicate clear buttons in MultiSelect filter --- .../src/components/inputs/MRT_FilterTextInput.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/mantine-react-table-open/src/components/inputs/MRT_FilterTextInput.tsx b/packages/mantine-react-table-open/src/components/inputs/MRT_FilterTextInput.tsx index 7c5d6eac6..19b506d3b 100644 --- a/packages/mantine-react-table-open/src/components/inputs/MRT_FilterTextInput.tsx +++ b/packages/mantine-react-table-open/src/components/inputs/MRT_FilterTextInput.tsx @@ -299,6 +299,7 @@ export const MRT_FilterTextInput = ({ searchable {...multiSelectProps} className={clsx(className, multiSelectProps.className)} + clearable={false} data={filterSelectOptions} onChange={(value) => setFilterValue(value)} ref={(node) => { @@ -315,6 +316,7 @@ export const MRT_FilterTextInput = ({ ? ClearButton : undefined } + rightSectionPointerEvents="all" style={commonProps.style} /> );