fix: Unwanted torrent selection during search (#664) @MBR-0001

This commit is contained in:
MBR-0001 2023-02-19 12:16:51 +01:00 committed by GitHub
parent d8ca97d928
commit a56aa63ab9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -395,7 +395,7 @@ export default {
return null return null
} }
// 'ctrl + A' => select torrents // 'ctrl + A' => select torrents
if (e.keyCode === 65 && e.ctrlKey) { if (e.keyCode === 65 && e.ctrlKey && e.target?.tagName !== 'INPUT') {
e.preventDefault() e.preventDefault()
this.selectAllTorrents() this.selectAllTorrents()