feat(vocab): attach language names to course data in VocabService
All checks were successful
Deploy to production / deploy (push) Successful in 2m49s

- Added a method to attach language names to course rows, enhancing the clarity and localization of vocabulary lessons.
- This update improves the overall user experience by ensuring accurate representation of language names in course data.
This commit is contained in:
Torsten Schulz (local)
2026-04-07 11:13:38 +02:00
parent 3a1d83f20c
commit fe9322c098

View File

@@ -1867,6 +1867,8 @@ export default class VocabService {
pedagogy: this._buildLessonPedagogy(lesson)
}));
await this._attachLanguageNamesToCourseRows([courseData]);
return courseData;
}