Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/9c2637e23b9899fee2bf6052d8570ff4ab63ebaa You should set ROOT_URL correctly, otherwise the web may not work correctly.

Hotkeys won't fire when typing in a password field (now the same as text boxes).

pull/3113/head
Mark McDowall 14 years ago
parent 847b743a16
commit 9c2637e23b

@ -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;
}

Loading…
Cancel
Save