make emoji picker case insensitive
fix https://akkoma.dev/FoundKeyGang/FoundKey/issues/50
This commit is contained in:
parent
939a5abb8c
commit
7395644883
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue