A few small UI fixes (#3310)

This commit is contained in:
Fesaa 2024-10-26 17:13:00 +02:00 committed by GitHub
parent 841db594c5
commit 7043bc566a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View file

@ -225,7 +225,7 @@ export class GroupedTypeaheadComponent implements OnInit {
close(event?: FocusEvent) {
if (event) {
// If the user is tabbing out of the input field, check if there are results first before closing
if (this.hasData) {
if (this.hasData || this.searchTerm) {
return;
}
}