diff --git a/src-ui/src/app/components/app-frame/global-search/global-search.component.ts b/src-ui/src/app/components/app-frame/global-search/global-search.component.ts index 7d8992677..ff143a39e 100644 --- a/src-ui/src/app/components/app-frame/global-search/global-search.component.ts +++ b/src-ui/src/app/components/app-frame/global-search/global-search.component.ts @@ -58,7 +58,11 @@ export class GlobalSearchComponent { this.searchInput.nativeElement.focus() } - if (this.searchResults && this.resultsDropdown.isOpen()) { + if ( + this.searchResults && + this.resultsDropdown.isOpen() && + document.activeElement !== this.searchInput.nativeElement + ) { if (event.key === 'ArrowDown') { if (this.currentItemIndex < this.searchResults.total - 1) { this.currentItemIndex++