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:
2025-03-10 15:08:02 -06:00
parent 3afd74dcbf
commit 0834802481
3 changed files with 33 additions and 19 deletions
@@ -25,5 +25,12 @@ mod tests {
)
.into()
));
assert!(CollectionDetailsUi::accepts(
(
ActiveRadarrBlock::AddMoviePrompt,
Some(ActiveRadarrBlock::CollectionDetails)
)
.into()
));
}
}