We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58913b6 commit 237b1c4Copy full SHA for 237b1c4
packages/table-core/src/filterFns.ts
@@ -5,7 +5,7 @@ const includesString: FilterFn<any> = (
5
columnId: string,
6
filterValue: string
7
) => {
8
- const search = filterValue.toLowerCase()
+ const search = filterValue?.toString()?.toLowerCase()
9
return Boolean(
10
row
11
.getValue<string | null>(columnId)
0 commit comments