Skip to content

Commit 8964ed8

Browse files
tifosiblackClément Fossati
andauthored
fix: filterValue is never passed as value in MRT_FilterTextField (#1326)
#1324 Co-authored-by: Clément Fossati <[email protected]>
1 parent b36702a commit 8964ed8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/material-react-table/src/components/inputs/MRT_FilterTextField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ export const MRT_FilterTextField = <TData extends MRT_RowData>({
486486
? Array.isArray(filterValue)
487487
? filterValue
488488
: []
489-
: ''
489+
: filterValue
490490
}
491491
>
492492
{(isSelectFilter || isMultiSelectFilter) && [

0 commit comments

Comments
 (0)