Skip to content

Commit

Permalink
fix: Query assistant up/down arrow woks abnormally (OD-2150)
Browse files Browse the repository at this point in the history
  • Loading branch information
robinshine committed Nov 4, 2024
1 parent 86ed97f commit 6c1661c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ onedev.server.inputassist = {
}
}
$input.bind("keydown", "up", function() {
keyUpOrDown(true);
return keyUpOrDown(true);
});
$input.bind("keydown", "down", function() {
keyUpOrDown(false);
return keyUpOrDown(false);
});

$input.bind("keydown", "return", function() {
Expand Down

0 comments on commit 6c1661c

Please sign in to comment.