iamge path

This commit is contained in:
IGNY8 VPS (Salman)
2025-11-12 05:23:28 +00:00
parent db5698a1db
commit 7ff3eafb51
4 changed files with 7 additions and 16 deletions

View File

@@ -97,8 +97,8 @@ export default function ContentImageCell({ image, maxPromptLength = 100 }: Conte
{image.status === 'generated' && (
<div className="space-y-1">
{/* Show local image if available, otherwise show original URL */}
{image.image_path ? (
{/* Always show image from image_path if available, otherwise from image_url */}
{image.image_path && image.image_path.trim() ? (
<>
<img
src={getLocalImageUrl(image.image_path)}