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/display/query-parser.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/display/query-parser.js')
-rw-r--r-- | ext/js/display/query-parser.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/js/display/query-parser.js b/ext/js/display/query-parser.js index f6c26ce7..ed10dab4 100644 --- a/ext/js/display/query-parser.js +++ b/ext/js/display/query-parser.js @@ -122,6 +122,8 @@ export class QueryParser extends EventDispatcher { if (selectedParserChanged && this._parseResults.length > 0) { this._renderParseResult(); } + + this._queryParser.lang = language; } /** |