mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 23:17:21 -06:00
WebUI: Use Map instead of Mootools Hash in all dynamic tables
PR #21358.
This commit is contained in:
@@ -536,7 +536,7 @@ window.qBittorrent.PropFiles ??= (() => {
|
||||
const rowId = torrentFilesTable.selectedRowsIds()[0];
|
||||
if (rowId === undefined)
|
||||
return;
|
||||
const row = torrentFilesTable.rows[rowId];
|
||||
const row = torrentFilesTable.rows.get(rowId);
|
||||
if (!row)
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user