make emoji picker case insensitive

fix FoundKeyGang/FoundKey#50
This commit is contained in:
Johann150 2022-08-01 11:06:46 +02:00
parent ba18589986
commit 751921e24f
Signed by untrusted user: Johann150
GPG key ID: 9EE6577A2A06F8F1

View file

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