Skip to content

Commit

Permalink
set min characters length to 2
Browse files Browse the repository at this point in the history
  • Loading branch information
elmanolete committed May 25, 2021
1 parent 11bd545 commit 176eec0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class SciTechBookSearchDelegate extends SearchDelegate {

@override
Widget buildResults(BuildContext context) {
if (query.trim().length < 4) {
if (query.trim().length < 2) {
return Container();
}

Expand Down

0 comments on commit 176eec0

Please sign in to comment.