Skip to content

Commit db119e4

Browse files
alexandrevryghemabhinav
authored andcommitted
Fixed search facet deadlock
Also fixed minor issue in MetadataService, but this doesn't cause any issues in the current code (cherry picked from commit 446280b)
1 parent 0c9f8c0 commit db119e4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/shared/input-suggestions/input-suggestions.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,11 @@ export class InputSuggestionsComponent implements ControlValueAccessor, OnChange
165165
}
166166

167167
/**
168-
* When any key is pressed (except for the Enter button) the query input should move to the input field
168+
* When any key is pressed (except for the Enter & Tab button) the query input should move to the input field
169169
* @param {KeyboardEvent} event The keyboard event
170170
*/
171171
onKeydown(event: KeyboardEvent) {
172-
if (event.key !== 'Enter') {
172+
if (event.key !== 'Enter' && event.key !== 'Tab') {
173173
this.queryInput.nativeElement.focus();
174174
}
175175
}

0 commit comments

Comments
 (0)