WebUI: Add "Moving" filter to side panel

PR #19870.
This commit is contained in:
xavier2k6 2023-11-06 13:23:59 +00:00 committed by GitHub
parent bcfa251290
commit f067ab1692
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 0 deletions

View file

@ -1378,6 +1378,10 @@ window.qBittorrent.DynamicTable = (function() {
if (state !== 'checkingUP' && state !== 'checkingDL' && state !== 'checkingResumeData')
return false;
break;
case 'moving':
if (state !== 'moving')
return false;
break;
case 'errored':
if (state != 'error' && state != "unknown" && state != "missingFiles")
return false;