mirror of
https://github.com/Radarr/Radarr
synced 2026-05-08 14:21:05 +02:00
Remove extraneous height from movie posters
This commit is contained in:
parent
a47528aa81
commit
7532dfb03c
1 changed files with 4 additions and 7 deletions
|
|
@ -151,12 +151,9 @@ export default function MovieIndexPosters(props: MovieIndexPostersProps) {
|
||||||
showTags,
|
showTags,
|
||||||
} = posterOptions;
|
} = posterOptions;
|
||||||
|
|
||||||
const nextAiringHeight = 19;
|
|
||||||
|
|
||||||
const heights = [
|
const heights = [
|
||||||
posterHeight,
|
posterHeight,
|
||||||
detailedProgressBar ? detailedProgressBarHeight : progressBarHeight,
|
detailedProgressBar ? detailedProgressBarHeight : progressBarHeight,
|
||||||
nextAiringHeight,
|
|
||||||
isSmallScreen ? columnPaddingSmallScreen : columnPadding,
|
isSmallScreen ? columnPaddingSmallScreen : columnPadding,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
@ -223,13 +220,13 @@ export default function MovieIndexPosters(props: MovieIndexPostersProps) {
|
||||||
heights.push(19);
|
heights.push(19);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'imdbRating':
|
case 'tmdbRating':
|
||||||
if (!showImdbRating) {
|
if (!showTmdbRating) {
|
||||||
heights.push(19);
|
heights.push(19);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'tmdbRating':
|
case 'imdbRating':
|
||||||
if (!showTmdbRating) {
|
if (!showImdbRating) {
|
||||||
heights.push(19);
|
heights.push(19);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue