mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 13:01:28 +02:00
Hotkeys won't fire when typing in a password field (now the same as text boxes).
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
handleObj.handler = function( event ) {
|
||||
// Don't fire in text-accepting inputs that we didn't directly bind to
|
||||
if ( this !== event.target && (/textarea|select/i.test( event.target.nodeName ) ||
|
||||
event.target.type === "text") ) {
|
||||
event.target.type === "text" || event.target.type === "password") ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user