mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 08:28:50 +01:00
Fixed: Spinning icon on toggling movie monitoring
This commit is contained in:
parent
4c8da09df6
commit
93581e4a2f
1 changed files with 1 additions and 1 deletions
|
|
@ -210,7 +210,6 @@ function MovieDetails({ movieId }: MovieDetailsProps) {
|
||||||
const { isSmallScreen } = useSelector(createDimensionsSelector());
|
const { isSmallScreen } = useSelector(createDimensionsSelector());
|
||||||
|
|
||||||
const commands = useSelector(createCommandsSelector());
|
const commands = useSelector(createCommandsSelector());
|
||||||
const isSaving = useSelector((state: AppState) => state.movies.isSaving);
|
|
||||||
|
|
||||||
const { isRefreshing, isRenaming, isSearching } = useMemo(() => {
|
const { isRefreshing, isRenaming, isSearching } = useMemo(() => {
|
||||||
const movieRefreshingCommand = findCommand(commands, {
|
const movieRefreshingCommand = findCommand(commands, {
|
||||||
|
|
@ -551,6 +550,7 @@ function MovieDetails({ movieId }: MovieDetailsProps) {
|
||||||
isAvailable,
|
isAvailable,
|
||||||
images,
|
images,
|
||||||
tags,
|
tags,
|
||||||
|
isSaving = false,
|
||||||
} = movie;
|
} = movie;
|
||||||
|
|
||||||
const { sizeOnDisk = 0 } = statistics;
|
const { sizeOnDisk = 0 } = statistics;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue