Vocabulary for Wanikani

Adds vocabulary to the wanikani dashboard

< Feedback on Vocabulary for Wanikani

Question/comment

§
Posted: 2017-02-05
Edited: 2017-02-05

Sort bug

I found a bug in the vocab sort function. Array.sort() expect the function to return an integer and not a boolean.

You should change

vocabList.sort((left, right) => {return left.level > right.level;});

to

vocabList.sort((left, right) => {return left.level - right.level;});
EekoneAuthor
§
Posted: 2017-02-05

Fixed

Post reply

Sign in to post a reply.