mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 13:23:34 -07:00
Fix keyboard navigation in files table
This commit is contained in:
parent
81bbd1c5bd
commit
ce757e866b
1 changed files with 2 additions and 2 deletions
|
@ -2850,13 +2850,13 @@ window.qBittorrent.DynamicTable ??= (() => {
|
|||
expandFolder(id) {
|
||||
const node = this.getNode(id);
|
||||
if (node.isFolder)
|
||||
this.expandNode(node);
|
||||
this.expandNode(node.rowId);
|
||||
}
|
||||
|
||||
collapseFolder(id) {
|
||||
const node = this.getNode(id);
|
||||
if (node.isFolder)
|
||||
this.collapseNode(node);
|
||||
this.collapseNode(node.rowId);
|
||||
}
|
||||
|
||||
isAllCheckboxesChecked() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue