diff options
| author | StefanVukovic99 <stefanvukovic44@gmail.com> | 2024-01-20 02:25:23 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-20 01:25:23 +0000 | 
| commit | 2b87c919bcd879c7f356308bc522b95f33e35f3b (patch) | |
| tree | 1301aa8bf3d9b91ad96bbe9372a66dceba190346 /ext/js/dictionary | |
| parent | 48f1d012ad5045319d4e492dfbefa39da92817b2 (diff) | |
Dictionary deinflections (#503)
* wip
* wip
* fix v3
* wip
* fix tests
* fix maxitems
* hide deinflection definitions
* fix anki template
* undo unnecessary change
* delete console.log
* refactor
* add set false to handlebars
* lint
* fix tests
* fix comments
* fix
* use Map in areArraysEqualIgnoreOrder
* move inflection source icons to css
* lint
* improve naming
* fix tests
* add test
* typescript
* use for of
* wip
* comments
* anki template upgrade
* update descriptions
Diffstat (limited to 'ext/js/dictionary')
| -rw-r--r-- | ext/js/dictionary/dictionary-importer.js | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/dictionary/dictionary-importer.js b/ext/js/dictionary/dictionary-importer.js index bfd7a8b2..8df7860e 100644 --- a/ext/js/dictionary/dictionary-importer.js +++ b/ext/js/dictionary/dictionary-importer.js @@ -160,7 +160,7 @@ export class DictionaryImporter {              const glossaryList = entry.glossary;              for (let j = 0, jj = glossaryList.length; j < jj; ++j) {                  const glossary = glossaryList[j]; -                if (typeof glossary !== 'object' || glossary === null) { continue; } +                if (typeof glossary !== 'object' || glossary === null || Array.isArray(glossary)) { continue; }                  glossaryList[j] = this._formatDictionaryTermGlossaryObject(glossary, entry, requirements);              }              if ((i % formatProgressInterval) === 0) {  |