fix: When adding a film from the Collection Details modal, the render order was wrong: Radarr Library -> Collection Table -> Add Movie Prompt (missing the Collection details prompt too). Correct order is: Collection Table -> Collection Details Modal -> Add Movie Modal
This commit is contained in:
@@ -33,7 +33,7 @@ impl DrawUi for CollectionDetailsUi {
|
||||
if let Route::Radarr(active_radarr_block, context_option) = route {
|
||||
if let Some(context) = context_option {
|
||||
return COLLECTION_DETAILS_BLOCKS.contains(&active_radarr_block)
|
||||
&& context == ActiveRadarrBlock::CollectionDetails;
|
||||
|| context == ActiveRadarrBlock::CollectionDetails;
|
||||
}
|
||||
|
||||
return COLLECTION_DETAILS_BLOCKS.contains(&active_radarr_block);
|
||||
|
||||
Reference in New Issue
Block a user