Skip to content

Commit

Permalink
fix #424 - Fix table filter search not displaying correct results (#425)
Browse files Browse the repository at this point in the history
Closes #424
  • Loading branch information
nancy-dassana authored Jul 31, 2021
1 parent 35a140c commit 35cedf9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/Table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ export const Table = <Data,>({
const delayedSearch = debounce(q => searchTable(q), 250)

const fuse = new Fuse(processedData, {
ignoreLocation: true,
isCaseSensitive: false,
keys: mapFilterKeys(columns),
threshold: 0.1
Expand Down

0 comments on commit 35cedf9

Please sign in to comment.