mirror of
https://github.com/misskey-dev/misskey
synced 2024-11-27 22:38:39 +09:00
enhance(client): case insensitive emoji search (#9346)
This commit is contained in:
parent
5e448deb03
commit
2c9a3f643c
@ -135,7 +135,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;
|
||||||
|
Loading…
Reference in New Issue
Block a user