mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
Added "Paused" filter to the Web UI too
This commit is contained in:
parent
bbac79c030
commit
2e51e69cc9
3 changed files with 10 additions and 1 deletions
|
@ -203,6 +203,13 @@ var dynamicTable = new Class ({
|
|||
tr.addClass("invisible");
|
||||
}
|
||||
break;
|
||||
case 'paused':
|
||||
if(status == "pausedDL" || status == "pausedUP") {
|
||||
tr.removeClass("invisible");
|
||||
} else {
|
||||
tr.addClass("invisible");
|
||||
}
|
||||
break;
|
||||
case 'active':
|
||||
if(status == "downloading" || status == "uploading") {
|
||||
tr.removeClass("invisible");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue