From e0850ca3077db74b87df65dc05f387748186b4c9 Mon Sep 17 00:00:00 2001 From: michael Date: Thu, 1 Jan 2026 09:33:30 -0600 Subject: [PATCH] fix: include source language in jobs list language count MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Languages column now shows total languages (source + translations) instead of just translation count, matching other parts of the UI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontend/src/routes/jobs/JobsList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/routes/jobs/JobsList.tsx b/frontend/src/routes/jobs/JobsList.tsx index 1d9aa7d..d27bb43 100644 --- a/frontend/src/routes/jobs/JobsList.tsx +++ b/frontend/src/routes/jobs/JobsList.tsx @@ -812,9 +812,9 @@ export function JobsList() { {formatDistanceToNow(parseUTCDate(job.created_at))} ago - {/* Languages Count */} + {/* Languages Count (includes source language) */} - {job.requested_outputs?.languages?.length || 0} + {(job.requested_outputs?.languages?.length || 0) + 1} {/* Status Badge */}