Merge pull request #1693 from panjinbo/main

🐛 Do not prevent default for Enter
This commit is contained in:
Nuno Coração 2024-08-28 12:54:32 +01:00 committed by GitHub
commit 5ccea15f3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -73,8 +73,6 @@ document.addEventListener("keydown", function (event) {
} else {
document.activeElement.click();
}
}else{
event.preventDefault();
}
}