make emoji picker case insensitive

fix FoundKeyGang/FoundKey#50
This commit is contained in:
Johann150 2022-08-01 11:06:46 +02:00 committed by ThatOneCalculator
parent 939a5abb8c
commit 7395644883
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ watch(q, () => {
return;
}
const newQ = q.value.replace(/:/g, '');
const newQ = q.value.replace(/:/g, '').toLowerCase();
const searchCustom = () => {
const max = 8;