Skip to content

Commit

Permalink
feat(frontend): 全站搜索优化 #7951
Browse files Browse the repository at this point in the history
  • Loading branch information
3octaves committed Nov 27, 2024
1 parent f83a7ce commit 1e61a06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbm-ui/frontend/src/views/quick-search/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
manual: true,
onSuccess(data, params) {
if (isRedirectSearch) {
keyword.value = data.keyword;
keyword.value = data.keyword.replace(batchSplitRegex, '|');
handleSearch();
}
Object.assign(dataMap.value, {
Expand Down

0 comments on commit 1e61a06

Please sign in to comment.