Skip to content

Commit

Permalink
fix:The selected cluster exception display zone
Browse files Browse the repository at this point in the history
  • Loading branch information
yang1666204 committed Apr 28, 2024
1 parent 1b9776e commit 70a6258
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/services/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ export async function getSimpleClusterList(): Promise<API.SimpleClusterListRespo
if (r.successful) {
return{
...r,
data:r.data.map((clusterDetail) => ({
clusterId: clusterDetail.clusterId,
data:r.data.map((clusterDetail,index) => ({
clusterId: clusterDetail.clusterId + index,
name: clusterDetail.name,
namespace: clusterDetail.namespace,
topology: clusterDetail.topology,
Expand Down

0 comments on commit 70a6258

Please sign in to comment.