Skip to content

Commit

Permalink
fix(frontend): 权限查询页查询条件手输无法查询 TencentBlueKing#8207
Browse files Browse the repository at this point in the history
  • Loading branch information
3octaves committed Dec 3, 2024
1 parent 293da53 commit 841bf18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dbm-ui/frontend/src/services/source/dbbase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function filterClusters<
cluster_type: string;
major_version: string;
},
>(params: { bk_biz_id: number; exact_domain?: string; cluster_ids?: string }) {
>(params: { bk_biz_id: number; exact_domain?: string; cluster_ids?: string; domain?: string }) {
return http.get<T[]>(`${path}/filter_clusters/`, params);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
if (addList.length) {
filterClusters({
bk_biz_id: window.PROJECT_CONFIG.BIZ_ID,
exact_domain: addList.join(','),
domain: addList.join(','),
}).then((clusterResultList) => {
// 删除时,删去已选集群
deleteSelectedCluster(deleteSet);
Expand Down

0 comments on commit 841bf18

Please sign in to comment.