diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-05-21 13:17:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-21 17:17:17 +0000 |
commit | 414256f4316b4815db302df3183b16dc48c1fb02 (patch) | |
tree | 56c13f9372060b2175a107c4ddc7521a96f64a4b /ext/js/pages/settings/anki-deck-generator-controller.js | |
parent | 4f39126ee16cc4be81c94e7c88896615b75b746a (diff) |
Fix HTML lang tags not matching the selected language (#979)
* Cleanup and add language tag to renderResult
* Add language switching support to anki card templates scanned text
* Update search page search-textbox lang on language switch
* Set queryparser lang
* Allow updating language for display-generator
* Only use kanji-stroke-orders font for japanese
Diffstat (limited to 'ext/js/pages/settings/anki-deck-generator-controller.js')
-rw-r--r-- | ext/js/pages/settings/anki-deck-generator-controller.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/js/pages/settings/anki-deck-generator-controller.js b/ext/js/pages/settings/anki-deck-generator-controller.js index c8b17742..416e2025 100644 --- a/ext/js/pages/settings/anki-deck-generator-controller.js +++ b/ext/js/pages/settings/anki-deck-generator-controller.js @@ -530,11 +530,12 @@ export class AnkiDeckGeneratorController { /** */ async _updateExampleText() { - this._languageSummaries = await this._application.api.getLanguageSummaries(); + const languageSummaries = await this._application.api.getLanguageSummaries(); const options = await this._settingsController.getOptions(); - const activeLanguage = /** @type {import('language').LanguageSummary} */ (this._languageSummaries.find(({iso}) => iso === options.general.language)); + const activeLanguage = /** @type {import('language').LanguageSummary} */ (languageSummaries.find(({iso}) => iso === options.general.language)); this._renderTextInput.lang = options.general.language; this._renderTextInput.value = activeLanguage.exampleText; + this._renderResult.lang = options.general.language; } /** |