fix: make search case-insensitive (#7689) (#7755)

master^2
墨苒孤 2026-04-01 19:17:36 +08:00 committed by allen
parent 4a69c9e665
commit b096e83f93
1 changed files with 2 additions and 0 deletions

View File

@ -47,6 +47,8 @@ function search(searchKey: string) {
searchResults.value = [];
return;
}
//
searchKey = searchKey.toLowerCase();
// 使
const reg = createSearchReg(searchKey);