1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04: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:
Bakerboy448
2023-05-02 18:32:40 -05:00
committed by Qstick
parent 5e338c93a3
commit 66b7b3b7d6
3 changed files with 6 additions and 6 deletions
@@ -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]);