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 f1e0f8b commit 676d186Copy full SHA for 676d186
demo/src/screens/MainScreen.js
@@ -113,7 +113,7 @@ class MainScreen extends Component {
113
const filteredMenuSection = _.filter(menuSection.screens, menuItem => {
114
const {title, description, tags} = menuItem;
115
return (
116
- _.includes(_.lowerCase(title), _.toLower(filterText)) ||
+ _.includes(_.toLower(title), _.toLower(filterText)) ||
117
_.includes(_.toLower(description), _.toLower(filterText)) ||
118
_.includes(_.toLower(tags), _.toLower(filterText))
119
);
0 commit comments