Skip to content

Commit

Permalink
fix(dropdown): avoid manual field blur
Browse files Browse the repository at this point in the history
Fixes #2083
  • Loading branch information
metonym committed Jan 20, 2025
1 parent fe36522 commit 3975cc0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Dropdown/Dropdown.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,6 @@
}
} else if (key === "Tab") {
open = false;
ref.blur();
} else if (key === "ArrowDown") {
if (!open) open = true;
change(1);
Expand Down

0 comments on commit 3975cc0

Please sign in to comment.