fix: show creator name prominently in detail panels and public review pages
All checks were successful
Deploy / deploy (push) Successful in 12s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
fahed
2026-03-07 02:13:15 +03:00
parent 35a0c4d6ce
commit c9d0b8f151
5 changed files with 15 additions and 3 deletions

View File

@@ -165,7 +165,7 @@ export default function PublicPostReview() {
{platforms.length > 0 && (
<span className="px-2 py-0.5 bg-surface-tertiary rounded-full text-xs">{platforms.join(', ')}</span>
)}
{post.creator_name && <span>{t('review.createdBy')} {post.creator_name}</span>}
{post.creator_name && <span className="font-medium text-text-secondary">{t('review.createdBy')} <strong>{post.creator_name}</strong></span>}
{post.scheduled_date && <span> {new Date(post.scheduled_date).toLocaleDateString()}</span>}
</div>
</div>

View File

@@ -200,10 +200,11 @@ export default function PublicReview() {
{artefact.description && (
<p className="text-text-secondary mb-2">{artefact.description}</p>
)}
<div className="flex items-center gap-3 text-sm text-text-tertiary">
<div className="flex items-center gap-3 text-sm text-text-tertiary flex-wrap">
<span className="px-2 py-0.5 bg-surface-tertiary rounded-full capitalize">{artefact.type}</span>
{artefact.brand_name && <span> {artefact.brand_name}</span>}
{artefact.version_number && <span> {t('review.version')} {artefact.version_number}</span>}
{artefact.creator_name && <span className="font-medium text-text-secondary">{t('review.createdBy')} <strong>{artefact.creator_name}</strong></span>}
</div>
</div>
</div>