Merge branch 'master' into simon/search-results-greyed

This commit is contained in:
wiz
2022-08-31 14:45:04 +02:00
committed by GitHub
12 changed files with 116 additions and 41 deletions

View File

@@ -25,6 +25,13 @@ export class SearchResultsComponent implements OnChanges {
}
}
searchButtonClick() {
if (this.resultsFlattened[this.activeIdx]) {
this.selectedResult.emit(this.resultsFlattened[this.activeIdx]);
this.results = null;
}
}
handleKeyDown(event: KeyboardEvent) {
switch (event.key) {
case 'ArrowDown':