Skip to content

Commit

Permalink
fix: don't preventDefault on modifier keys
Browse files Browse the repository at this point in the history
  • Loading branch information
leodag committed Aug 1, 2023
1 parent f20688c commit 1ad9d01
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/js/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,6 @@ const Logic = {

if (e.altKey || e.shiftKey || e.ctrlKey || e.metaKey) {
isModifierPressed = true;
e.preventDefault();
}

if (Logic._currentPanel === "containersList" && !isModifierPressed && !isSearchInputFocused) {
Expand Down

0 comments on commit 1ad9d01

Please sign in to comment.