Skip to content

Commit

Permalink
Trim spaces from the search filter
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbakker committed Aug 27, 2024
1 parent 2add8aa commit 7e1daf7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ public String getSearchFilter() {
}

public void setSearchFilter(String search) {
_searchFilter = (search != null && !search.isEmpty()) ? search.toLowerCase() : null;
_searchFilter = (search != null && !search.isEmpty()) ? search.toLowerCase().trim() : null;
updateShownEntries();
}

Expand Down

0 comments on commit 7e1daf7

Please sign in to comment.