mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 10:03:12 -04:00
changed Radarr instance badge color
This commit is contained in:
@@ -143,8 +143,10 @@ export class SearchStatsComponent implements OnInit, OnDestroy {
|
||||
return type === SeekerSearchType.Replacement ? 'warning' : 'info';
|
||||
}
|
||||
|
||||
instanceTypeSeverity(type: string): 'info' | 'default' {
|
||||
return type === 'Radarr' || type === 'Sonarr' ? 'info' : 'default';
|
||||
instanceTypeSeverity(type: string): BadgeSeverity {
|
||||
if (type === 'Radarr') return 'warning';
|
||||
if (type === 'Sonarr') return 'info';
|
||||
return 'default';
|
||||
}
|
||||
|
||||
itemDisplayName(item: { itemTitle: string; externalItemId: number }): string {
|
||||
|
||||
Reference in New Issue
Block a user