mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-29 05:28:53 +03:00
fix: Unwanted torrent selection during search (#664) @MBR-0001
This commit is contained in:
parent
d8ca97d928
commit
a56aa63ab9
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue