"src/lib/vscode:/vscode.git/clone" did not exist on "6139d775eff684b62b79c90faa2ef7acd8e135b4"
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