mirror of
https://github.com/Radarr/Radarr
synced 2025-01-03 05:44:50 +00:00
Fixed: Unable to search individual movies from Movie Index
Fixed: Refresh on movie list refreshing all movies Fixes #8434
This commit is contained in:
parent
5e338c93a3
commit
66b7b3b7d6
3 changed files with 6 additions and 6 deletions
|
@ -84,7 +84,7 @@ function MovieIndexOverview(props: MovieIndexOverviewProps) {
|
|||
dispatch(
|
||||
executeCommand({
|
||||
name: REFRESH_MOVIE,
|
||||
movieId,
|
||||
movieIds: [movieId],
|
||||
})
|
||||
);
|
||||
}, [movieId, dispatch]);
|
||||
|
@ -93,7 +93,7 @@ function MovieIndexOverview(props: MovieIndexOverviewProps) {
|
|||
dispatch(
|
||||
executeCommand({
|
||||
name: MOVIE_SEARCH,
|
||||
movieId,
|
||||
movieIds: [movieId],
|
||||
})
|
||||
);
|
||||
}, [movieId, dispatch]);
|
||||
|
|
|
@ -77,7 +77,7 @@ function MovieIndexPoster(props: MovieIndexPosterProps) {
|
|||
dispatch(
|
||||
executeCommand({
|
||||
name: REFRESH_MOVIE,
|
||||
movieId,
|
||||
movieIds: [movieId],
|
||||
})
|
||||
);
|
||||
}, [movieId, dispatch]);
|
||||
|
@ -86,7 +86,7 @@ function MovieIndexPoster(props: MovieIndexPosterProps) {
|
|||
dispatch(
|
||||
executeCommand({
|
||||
name: MOVIE_SEARCH,
|
||||
movieId,
|
||||
movieIds: [movieId],
|
||||
})
|
||||
);
|
||||
}, [movieId, dispatch]);
|
||||
|
|
|
@ -87,7 +87,7 @@ function MovieIndexRow(props: MovieIndexRowProps) {
|
|||
dispatch(
|
||||
executeCommand({
|
||||
name: REFRESH_MOVIE,
|
||||
movieId,
|
||||
movieIds: [movieId],
|
||||
})
|
||||
);
|
||||
}, [movieId, dispatch]);
|
||||
|
@ -96,7 +96,7 @@ function MovieIndexRow(props: MovieIndexRowProps) {
|
|||
dispatch(
|
||||
executeCommand({
|
||||
name: MOVIE_SEARCH,
|
||||
movieId,
|
||||
movieIds: [movieId],
|
||||
})
|
||||
);
|
||||
}, [movieId, dispatch]);
|
||||
|
|
Loading…
Reference in a new issue