"docs/vscode:/vscode.git/clone" did not exist on "d654eff441aa7faafef279b798e64d5dd4f7de57"
Commit 3848b2c8 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: search

parent b6d9cf3b
......@@ -321,8 +321,9 @@
return true;
} else {
let title = chat.title.toLowerCase();
const query = search.toLowerCase();
if (title.includes(search)) {
if (title.includes(query)) {
return true;
} else {
return false;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment