We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cf4fd9 commit 226c677Copy full SHA for 226c677
examples/react/filters-fuzzy/src/main.tsx
@@ -84,10 +84,10 @@ function App() {
84
{
85
accessorKey: 'firstName',
86
cell: info => info.getValue(),
87
- filterFn: 'includesStringSensitive', //note: normal non-fuzzy filter column
+ filterFn: 'includesStringSensitive', //note: normal non-fuzzy filter column - case sensitive
88
},
89
90
- accessorFn: row => row.lastName, //note: normal non-fuzzy filter column - case sensitive
+ accessorFn: row => row.lastName,
91
id: 'lastName',
92
93
header: () => <span>Last Name</span>,
0 commit comments