Bugfix
This commit is contained in:
parent
972b945b4c
commit
c198a0f919
@ -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(' ')};
|
||||
|
3
util/data/edict
Normal file
3
util/data/edict
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:51b9e6f5761f3a9c2d1f6c65df131ad3fa60738ffda06e1e0cfb07fdfe6acd89
|
||||
size 15655597
|
3
util/data/enamdict
Normal file
3
util/data/enamdict
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9fd670f8c8a020aeb2b870d186d223702e91e0538cec04a784b1433363aff9f9
|
||||
size 26426507
|
3
util/data/kanjidic
Normal file
3
util/data/kanjidic
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:494d5a6d750444907995eb3be7bbe7d817a20d3431ae0d8c944715690610b69c
|
||||
size 1213904
|
Loading…
Reference in New Issue
Block a user