mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
Fix background image for group and studio
This commit is contained in:
@@ -255,7 +255,7 @@ const GroupPage: React.FC<IProps> = ({ group }) => {
|
|||||||
<div className={headerClassName}>
|
<div className={headerClassName}>
|
||||||
<BackgroundImage
|
<BackgroundImage
|
||||||
imagePath={group.front_image_path ?? undefined}
|
imagePath={group.front_image_path ?? undefined}
|
||||||
show={!enableBackgroundImage && !isEditing}
|
show={enableBackgroundImage && !isEditing}
|
||||||
/>
|
/>
|
||||||
<div className="detail-container">
|
<div className="detail-container">
|
||||||
<HeaderImage encodingImage={encodingImage}>
|
<HeaderImage encodingImage={encodingImage}>
|
||||||
|
|||||||
@@ -400,7 +400,7 @@ const StudioPage: React.FC<IProps> = ({ studio, tabKey }) => {
|
|||||||
<div className={headerClassName}>
|
<div className={headerClassName}>
|
||||||
<BackgroundImage
|
<BackgroundImage
|
||||||
imagePath={studio.image_path ?? undefined}
|
imagePath={studio.image_path ?? undefined}
|
||||||
show={!enableBackgroundImage && !isEditing}
|
show={enableBackgroundImage && !isEditing}
|
||||||
/>
|
/>
|
||||||
<div className="detail-container">
|
<div className="detail-container">
|
||||||
<HeaderImage encodingImage={encodingImage}>
|
<HeaderImage encodingImage={encodingImage}>
|
||||||
|
|||||||
Reference in New Issue
Block a user