From a56aa63ab9988a689b9fb40a34e345d8e239bafa Mon Sep 17 00:00:00 2001 From: MBR-0001 <55142207+MBR-0001@users.noreply.github.com> Date: Sun, 19 Feb 2023 12:16:51 +0100 Subject: [PATCH] fix: Unwanted torrent selection during search (#664) @MBR-0001 --- src/views/Dashboard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Dashboard.vue b/src/views/Dashboard.vue index 0ce0b3a8..7506fcef 100644 --- a/src/views/Dashboard.vue +++ b/src/views/Dashboard.vue @@ -395,7 +395,7 @@ export default { return null } // 'ctrl + A' => select torrents - if (e.keyCode === 65 && e.ctrlKey) { + if (e.keyCode === 65 && e.ctrlKey && e.target?.tagName !== 'INPUT') { e.preventDefault() this.selectAllTorrents()