fix: history search can not remove (#7732)

pull/340/MERGE
橙子 2026-03-29 14:16:32 +08:00 committed by GitHub
parent 9a22027b35
commit 34439dce4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ watch(
if (val) {
handleSearch(val);
} else {
searchResults.value = [...searchHistory.value];
searchResults.value = searchHistory.value;
}
},
);