make inline emoji search case insensitive

pull/164/head
Aevann 2023-06-30 22:10:03 +03:00
parent f84b9d15c9
commit 0039bc3d56
1 changed files with 1 additions and 0 deletions

View File

@ -128,6 +128,7 @@ const emojisSearchDictionary = {
* @returns {Set}
*/
completeSearch: function(query) {
query = query.toLowerCase()
const result = new Set();
for(let i = 0; i < this.dict.length; i++)