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
1 changed files with 1 additions and 1 deletions

View File

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