fix(music): TrendsTab 리포트 이력 메타데이터 장르/추천수 표시

리포트 목록 행의 메타 정보를 insights 미리보기에서 장르/추천 개수로 교체.
이제 list 응답에 top_genres·recommended_styles가 포함되므로 클릭 시
장르 차트와 Suno 프롬프트가 정상 표시됨.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-01 15:03:34 +09:00
parent 1847771ad2
commit ed95f6678f

View File

@@ -195,7 +195,7 @@ export default function TrendsTab() {
)} )}
</span> </span>
<span className="yt-report-row__meta"> <span className="yt-report-row__meta">
{r.insights ? r.insights.slice(0, 60) + (r.insights.length >= 60 ? '…' : '') : ''} {r.top_genres?.length ?? 0} 장르 · {r.recommended_styles?.length ?? 0} 추천
</span> </span>
<span className="yt-report-row__action">보기 </span> <span className="yt-report-row__action">보기 </span>
</div> </div>