File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-autocomplete-dropdown-playground" ,
3
- "version" : " 4.0.0-rc.4 " ,
3
+ "version" : " 4.0.0-rc.5 " ,
4
4
"private" : true ,
5
5
"license" : " MIT" ,
6
6
"author" :
" Alexandr Kozhevnikov <[email protected] >" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-autocomplete-dropdown" ,
3
- "version" : " 4.0.0-rc.4 " ,
3
+ "version" : " 4.0.0-rc.5 " ,
4
4
"description" : " Dropdown Item picker with search and autocomplete (typeahead) functionality for react native" ,
5
5
"keywords" : [
6
6
" react-native" ,
Original file line number Diff line number Diff line change @@ -299,7 +299,6 @@ export const AutocompleteDropdown = memo<
299
299
}
300
300
301
301
const newSet = initialDataSet . filter ( ( item : AutocompleteDropdownItem ) => {
302
- const titleLowercase = ( item . title || '' ) . toLowerCase ( )
303
302
const titleStr = item . title || ''
304
303
const title = caseSensitive ? titleStr : titleStr . toLowerCase ( )
305
304
const findWhere = ignoreAccents ? diacriticless ( title ) : title
You can’t perform that action at this time.
0 commit comments