Skip to content

Commit

Permalink
fix(frontend): 全局搜索体验问题修复及优化 #3834
Browse files Browse the repository at this point in the history
  • Loading branch information
3octaves authored and zhangzhw8 committed Apr 15, 2024
1 parent 4e9169b commit 6d554d8
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
handleRedirect(
data.cluster_type,
{
id: data.id,
domain: data.immute_domain,
},
data.bk_biz_id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
handleRedirect(
data.cluster_type,
{
id: data.id,
name: data.name,
},
data.bk_biz_id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@
handleRedirect(
data.cluster_type,
{
id: data.cluster_id,
ip: data.ip,
instance: `${data.ip}:${data.port}`,
},
data.bk_biz_id,
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@
handleRedirect(
data.cluster_type,
{
id: data.cluster_id,
ip: data.ip,
instance: data.ip,
},
data.bk_biz_id,
);
Expand Down
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 @@ -259,7 +259,7 @@
quickSearchRun({
...formData.value,
keyword: keyword.value.replace(//g, '\n'),
keyword: keyword.value.replace(batchSplitRegex, ' '),
limit: 1000,
});
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,6 @@
handleRedirect(
data.cluster_type,
{
id: data.id,
domain: data.immute_domain,
},
data.bk_biz_id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,6 @@
handleRedirect(
data.cluster_type,
{
id: data.id,
name: data.name,
},
data.bk_biz_id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,7 @@
handleRedirect(
data.cluster_type,
{
id: data.cluster_id,
ip: data.ip,
instance: data.instance,
},
data.bk_biz_id,
);
Expand Down

0 comments on commit 6d554d8

Please sign in to comment.