mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Fix cover image in scene edit tab (#1123)
This commit is contained in:
@@ -83,7 +83,9 @@ export const SceneEditPanel: React.FC<IProps> = ({
|
||||
|
||||
const [scrapedScene, setScrapedScene] = useState<GQL.ScrapedScene | null>();
|
||||
|
||||
const [coverImagePreview, setCoverImagePreview] = useState<string>();
|
||||
const [coverImagePreview, setCoverImagePreview] = useState<
|
||||
string | undefined
|
||||
>(scene.paths.screenshot ?? undefined);
|
||||
|
||||
const stashConfig = useConfiguration();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user