mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Fixed: Search being triggered from Release Restrictions when pressing 't'
This commit is contained in:
@@ -6,7 +6,7 @@ define(
|
|||||||
'Series/SeriesCollection'
|
'Series/SeriesCollection'
|
||||||
], function (Backbone, $, SeriesCollection) {
|
], function (Backbone, $, SeriesCollection) {
|
||||||
$(document).on('keydown', function (e) {
|
$(document).on('keydown', function (e) {
|
||||||
if ($(e.target).is('input')) {
|
if ($(e.target).is('input') || $(e.target).is('textarea')) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user