From c198a0f91942b8016b272c8a5fad609c1ff18ef1 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Wed, 13 Apr 2016 17:28:44 -0700 Subject: Bugfix --- ext/bg/js/dictionary.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/bg') 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(' ')}; -- cgit v1.2.3