Skip to content

Commit

Permalink
Merge branch 'main' into 3791-switch-client-code-from-js-to-ts
Browse files Browse the repository at this point in the history
  • Loading branch information
walmazacn authored Aug 1, 2024
2 parents 179a470 + 4a4ffe9 commit 0e876ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/navigation/GlobalSearchCentered.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
globalSearchHelper.closeSearchResult();
}
function onKeyUp({ keyCode }) {
globalSearchHelper.onKeyUp(keyCode, displaySearchResult);
function onKeyUp(event) {
globalSearchHelper.onKeyUp(event, displaySearchResult);
}
function searchBtnClicked() {
Expand Down

0 comments on commit 0e876ed

Please sign in to comment.