1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-18 21:35:27 -04:00

New: Improve UI status when downloads cannot be imported automatically

Closes #6873
This commit is contained in:
Mark McDowall
2024-06-25 15:51:20 -07:00
committed by GitHub
parent 63bed3e670
commit 6d5ff9c4d6
5 changed files with 17 additions and 8 deletions
@@ -70,6 +70,11 @@ function QueueStatus(props) {
iconName = icons.DOWNLOADED;
title = translate('Downloaded');
if (trackedDownloadState === 'importBlocked') {
title += ` - ${translate('UnableToImportAutomatically')}`;
iconKind = kinds.WARNING;
}
if (trackedDownloadState === 'importPending') {
title += ` - ${translate('WaitingToImport')}`;
iconKind = kinds.PURPLE;