From ce757e866b6e6b6a3e031e085ff84338c00d692e Mon Sep 17 00:00:00 2001 From: Thomas Piccirello Date: Mon, 9 Jun 2025 16:06:09 -0700 Subject: [PATCH] Fix keyboard navigation in files table --- src/webui/www/private/scripts/dynamicTable.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webui/www/private/scripts/dynamicTable.js b/src/webui/www/private/scripts/dynamicTable.js index 20333268b..afe2d29ba 100644 --- a/src/webui/www/private/scripts/dynamicTable.js +++ b/src/webui/www/private/scripts/dynamicTable.js @@ -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() {