fix: don't preventDefault on modifier keys

This commit is contained in:
Leonardo Dagnino 2023-08-01 23:50:48 +02:00
parent f20688c453
commit 1ad9d01f7f

View file

@ -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) {