1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-03-05 13:20:20 -05:00

Fixed: Spinning icon on toggling series monitoring

This commit is contained in:
Bogdan
2025-03-11 23:03:18 +02:00
committed by Mark McDowall
parent a324052deb
commit 94f64435f5

View File

@@ -188,7 +188,6 @@ function SeriesDetails({ seriesId }: SeriesDetailsProps) {
} = useSelector(createEpisodeFilesSelector());
const commands = useSelector(createCommandsSelector());
const isSaving = useSelector((state: AppState) => state.series.isSaving);
const { isRefreshing, isRenaming, isSearching } = useMemo(() => {
const seriesRefreshingCommand = findCommand(commands, {
@@ -439,6 +438,7 @@ function SeriesDetails({ seriesId }: SeriesDetailsProps) {
genres,
tags,
year,
isSaving = false,
} = series;
const { episodeFileCount = 0, sizeOnDisk = 0, lastAired } = statistics;