Fix keyboard navigation in files table

This commit is contained in:
Thomas Piccirello 2025-06-09 16:06:09 -07:00
commit ce757e866b
No known key found for this signature in database

View file

@ -2850,13 +2850,13 @@ window.qBittorrent.DynamicTable ??= (() => {
expandFolder(id) { expandFolder(id) {
const node = this.getNode(id); const node = this.getNode(id);
if (node.isFolder) if (node.isFolder)
this.expandNode(node); this.expandNode(node.rowId);
} }
collapseFolder(id) { collapseFolder(id) {
const node = this.getNode(id); const node = this.getNode(id);
if (node.isFolder) if (node.isFolder)
this.collapseNode(node); this.collapseNode(node.rowId);
} }
isAllCheckboxesChecked() { isAllCheckboxesChecked() {