mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
make emoji picker case insensitive
fix https://akkoma.dev/FoundKeyGang/FoundKey/issues/50
This commit is contained in:
parent
9a9f192479
commit
b423c9991d
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue