Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -299,6 +299,7 @@ export const MRT_FilterTextInput = <TData extends MRT_RowData>({
searchable
{...multiSelectProps}
className={clsx(className, multiSelectProps.className)}
clearable={false}
data={filterSelectOptions}
onChange={(value) => setFilterValue(value)}
ref={(node) => {
Expand All@@ -315,6 +316,7 @@ export const MRT_FilterTextInput = <TData extends MRT_RowData>({
? ClearButton
: undefined
}
rightSectionPointerEvents="all"
style={commonProps.style}
/>
);
Expand Down