fix(client): quick search down arrow not working on no results (closes #798)

This commit is contained in:
Elian Doran
2024-12-18 22:54:52 +02:00
parent a2c287e8b8
commit 9dd296f83c

View File

@@ -76,7 +76,7 @@ export default class QuickSearchWidget extends BasicWidget {
}); });
shortcutService.bindElShortcut(this.$searchString, 'down', () => { shortcutService.bindElShortcut(this.$searchString, 'down', () => {
this.$dropdownMenu.find('.dropdown-item:first').focus(); this.$dropdownMenu.find('.dropdown-item:not(.disabled):first').focus();
}); });
shortcutService.bindElShortcut(this.$searchString, 'esc', () => { shortcutService.bindElShortcut(this.$searchString, 'esc', () => {