diff options
Diffstat (limited to 'ext/bg/js')
-rw-r--r-- | ext/bg/js/dictionary.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/dictionary.js b/ext/bg/js/dictionary.js index 185aaee2..366692b0 100644 --- a/ext/bg/js/dictionary.js +++ b/ext/bg/js/dictionary.js @@ -32,13 +32,13 @@ class Dictionary { } findTerm(term) { - const results = []; + let results = []; for (const name in this.termDicts) { const dict = this.termDicts[name]; const indices = dict.indices[term] || []; - results.push( + results = results.concat( indices.map(index => { const [e, r, t, ...g] = dict.defs[index]; return {id: index, expression: e, reading: r, glossary: g.join('; '), tags: t.split(' ')}; |