1
0
Fork 0

Fixed spell rendering when < 3 characters in search

This commit is contained in:
sharpshark28 2016-07-10 17:57:21 -05:00
parent e2135aaf40
commit 551a5e8f60

View file

@ -269,6 +269,6 @@ $('body').on('change keyup cut paste', '[data-action-search]', e => {
return spell.ranking > 0;
});
RENDERSPELLS({spells: filteredData});
} else RENDERSPELLS(data);
} else RENDERSPELLS({spells: data});
}, 0);
});