Skip to content

Commit

Permalink
FE-447: make query spotlight search case-insensitive (#20878)
Browse files Browse the repository at this point in the history
  • Loading branch information
palashkaria committed May 16, 2024
1 parent 69625ff commit 2cd04d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
devel
-----

* FE-447: fix query spotlight search, make it case-insensitive.

* FE-443: Fix inconsistent tooltip padding in Create Index dialog.

* Fix potentially hanging threads during index creation if starting one of the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ const SpotlightSelect = () => {
) => {
// default search
if (
label.toLocaleLowerCase().includes(searchString) ||
value.toLocaleLowerCase().includes(searchString)
label.toLocaleLowerCase().includes(searchString.toLocaleLowerCase()) ||
value.toLocaleLowerCase().includes(searchString.toLocaleLowerCase())
) {
return true;
}
Expand Down

0 comments on commit 2cd04d1

Please sign in to comment.