WebUI: Support reannouncing individual trackers

PR #22954.
This commit is contained in:
Thomas Piccirello
2025-07-19 09:29:14 +02:00
committed by GitHub
parent 7c443b0c3b
commit 163f683186
5 changed files with 72 additions and 3 deletions

View File

@@ -1818,6 +1818,11 @@ window.qBittorrent.DynamicTable ??= (() => {
onSelectedRowChanged() {
updatePropertiesPanel();
}
isStopped(hash) {
const row = this.getRow(hash);
return (row === undefined) ? true : row.full_data.state.includes("stopped");
}
}
class TorrentPeersTable extends DynamicTable {