1
0
mirror of https://github.com/misskey-dev/misskey synced 2024-11-23 22:56:58 +09:00

enhance(client): case insensitive emoji search (#9346)

This commit is contained in:
Kagami Sascha Rosylight 2022-12-19 09:00:45 +09:00 committed by GitHub
parent 5e448deb03
commit 2c9a3f643c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;