Skip to content

Commit

Permalink
Merge branch '3791-switch-client-code-from-js-to-ts' of https://githu…
Browse files Browse the repository at this point in the history
…b.com/SAP/luigi into 3791-switch-client-code-from-js-to-ts
  • Loading branch information
walmazacn committed Aug 1, 2024
2 parents 3988306 + 0e876ed commit b99172a
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 b99172a

Please sign in to comment.