saved_snippets: Fix Enter click on "Create a new saved snippet" button.

Using "Enter" key to click on "Create a new saved snippet" does not work
when the dropdown list is empty. This commit fixes that bug.
This commit is contained in:
Vector73
2025-02-09 16:59:48 +00:00
committed by Tim Abbott
parent 8018c2d203
commit 55f1c2d90f

View File

@@ -391,7 +391,12 @@ export class DropdownWidget {
switch (e.key) {
case "Enter":
if (e.target === $search_input.get(0)) {
if (
list_items.length === 0 ||
e.target === $sticky_bottom_option.get(0)
) {
$sticky_bottom_option.trigger("click");
} else if (e.target === $search_input.get(0)) {
// Select first item if in search input.
first_item().trigger("click");
} else if (list_items.length > 0) {