Skip to content

Commit

Permalink
Update search to lower case as well
Browse files Browse the repository at this point in the history
This will covert the search text to lower case as well for usability.
  • Loading branch information
bandersen23 committed Jan 10, 2021
1 parent 2ac4544 commit 9da381d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -40,7 +40,7 @@ const defaultProps = {
item =>
String(item.title || item)
.toLowerCase()
.indexOf(s) !== -1
.indexOf(s.toLowerCase()) !== -1
)
};

Expand Down

0 comments on commit 9da381d

Please sign in to comment.