Fixed: Artists poster view on mobile devices

(cherry picked from commit c0b30a50281c38a103c2f800064d0ec964fae6e0)

Co-authored-by: Mark McDowall <mark@mcdowall.ca>
pull/4509/head
servarr[bot] 3 months ago committed by GitHub
parent a8618fcf49
commit aa98bb16e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -201,11 +201,15 @@ export default function ArtistIndexPosters(props: ArtistIndexPostersProps) {
if (isSmallScreen) {
const padding = bodyPaddingSmallScreen - 5;
setSize({
width: window.innerWidth - padding * 2,
height: window.innerHeight,
});
const width = window.innerWidth - padding * 2;
const height = window.innerHeight;
if (width !== size.width || height !== size.height) {
setSize({
width,
height,
});
}
return;
}

Loading…
Cancel
Save