style(translate): make LLM cards compact in a 3-column grid, remove glossary language filtering, and add contextual help under engine selection
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 2m58s

This commit is contained in:
2026-05-31 11:05:34 +02:00
parent cd8a57324d
commit 8ab45f1b6e
2 changed files with 69 additions and 96 deletions

View File

@@ -222,11 +222,7 @@ export function GlossarySelector({ sourceLang, targetLang, isPro, mode, glossary
const sourceFlag = SUPPORTED_LANGUAGES.find(l => l.code === sourceLang)?.flag ?? '';
const targetFlag = SUPPORTED_LANGUAGES.find(l => l.code === targetLang)?.flag ?? '';
const langFiltered = sourceLang === 'auto'
? glossaries
: glossaries.filter(g => g.source_language === sourceLang);
const filteredGlossaries = langFiltered.length > 0 ? langFiltered : glossaries;
const filteredGlossaries = glossaries;
const selected = glossaries.find(g => g.id === glossaryId);
return (
<div