Skip to content
This repository has been archived by the owner on Apr 16, 2021. It is now read-only.

Commit

Permalink
no case sensitive. (#13)
Browse files Browse the repository at this point in the history
Co-authored-by: DeyualSimu <[email protected]>
  • Loading branch information
DeyualSimu and DeyualSimu committed Jan 10, 2021
1 parent f155ed0 commit 759840b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ const projectMatchesAllTerms = (
terms: ReadonlyArray<string>
): boolean =>
terms.every(
(term) => project.name.includes(term) || project.path.includes(term)
(term) => project.name.toLowerCase().includes(term.toLowerCase()) || project.path.toLowerCase().includes(term.toLowerCase())
);

/**
Expand Down

0 comments on commit 759840b

Please sign in to comment.