pipeline card: always show track title so same-language audios are distinguishable

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-14 15:50:51 +02:00
parent ff74cc3a04
commit 4baf209134

View File

@@ -112,7 +112,7 @@ export function PipelineCard({ item, jellyfinUrl, onToggleStream, onApprove, onS
<span className="font-medium">{langName(s.language) || "unknown"}</span>
{description && <span className="text-gray-500">{description}</span>}
{s.is_default === 1 && <span className="text-[10px] text-gray-400 uppercase">default</span>}
{s.title && !isOriginal && (
{s.title && (
<span className="text-gray-400 truncate" title={s.title}>
{s.title}
</span>