mirror of
https://github.com/stashapp/stash.git
synced 2026-04-22 23:10:52 +02:00
Fix background image for group and studio
This commit is contained in:
parent
f598fa71da
commit
3ddfafa831
2 changed files with 2 additions and 2 deletions
|
|
@ -255,7 +255,7 @@ const GroupPage: React.FC<IProps> = ({ group }) => {
|
|||
<div className={headerClassName}>
|
||||
<BackgroundImage
|
||||
imagePath={group.front_image_path ?? undefined}
|
||||
show={!enableBackgroundImage && !isEditing}
|
||||
show={enableBackgroundImage && !isEditing}
|
||||
/>
|
||||
<div className="detail-container">
|
||||
<HeaderImage encodingImage={encodingImage}>
|
||||
|
|
|
|||
|
|
@ -400,7 +400,7 @@ const StudioPage: React.FC<IProps> = ({ studio, tabKey }) => {
|
|||
<div className={headerClassName}>
|
||||
<BackgroundImage
|
||||
imagePath={studio.image_path ?? undefined}
|
||||
show={!enableBackgroundImage && !isEditing}
|
||||
show={enableBackgroundImage && !isEditing}
|
||||
/>
|
||||
<div className="detail-container">
|
||||
<HeaderImage encodingImage={encodingImage}>
|
||||
|
|
|
|||
Loading…
Reference in a new issue