Skip to content

Commit

Permalink
Merge pull request #672 from nikitaagg1993/fix(dropdown)
Browse files Browse the repository at this point in the history
fix(dropdown): fix drodown keyword search
  • Loading branch information
kksarma authored Jul 20, 2020
2 parents ca50b00 + dbf6767 commit 256a4bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Input/DropDown/DropDownGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class DropDownGroup extends React.Component {
this.toggleDropdown();
break;
default:
if (!isOpen && keywordSearch) {
if (keywordSearch) {
this.searchKeyWord(e);
}
break;
Expand Down

0 comments on commit 256a4bd

Please sign in to comment.