Skip to content

Commit

Permalink
fix(commandline): manual mode being broken
Browse files Browse the repository at this point in the history
closes #5339
  • Loading branch information
Miodec committed Apr 26, 2024
1 parent 607da30 commit 6abf0aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/ts/commandline/commandline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,8 @@ async function filterSubgroup(): Promise<void> {
continue;
}
if (
match.matchCount === minMatchCountToShow &&
match.matchStrength === maxMatchStrength
match.matchCount >= minMatchCountToShow &&
match.matchStrength >= maxMatchStrength
) {
command.found = true;
} else {
Expand Down

0 comments on commit 6abf0aa

Please sign in to comment.