Skip to content
Snippets Groups Projects
Unverified Commit 2c9a3f64 authored by Kagami Sascha Rosylight's avatar Kagami Sascha Rosylight Committed by GitHub
Browse files

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

parent 5e448deb
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment