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
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 2m58s
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user