Skip to content

Commit

Permalink
Case-insensitive search for migration combobox
Browse files Browse the repository at this point in the history
  • Loading branch information
ccruzkauppila committed Nov 5, 2024
1 parent 2bc8bc6 commit 4b30970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ui/MigrationCombobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const MigrationCombobox = () => {
? accountList
: accountList.filter(
(account) =>
account.name.includes(query) ||
account.name.toLowerCase().includes(query.toLowerCase()) ||
account.id.toString().includes(query),
);

Expand Down

0 comments on commit 4b30970

Please sign in to comment.