Skip to content

Commit

Permalink
fix(route): remove xxxId in menu items
Browse files Browse the repository at this point in the history
  • Loading branch information
powerfooI committed Apr 3, 2024
1 parent 7b0cc68 commit 06afa8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/src/pages/Cluster/Detail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const ClusterDetail: React.FC = () => {
defaultMessage: '连接集群',
}),
key: 'connection',
link: `/cluster/${clusterId}/connection`,
link: `/cluster/${ns}/${name}/${clusterName}/connection`,
},
];

Expand Down
2 changes: 1 addition & 1 deletion ui/src/pages/Tenant/Detail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const TenantDetail: React.FC = () => {
defaultMessage: '连接租户',
}),
key: 'connection',
link: `/tenant/${tenantId}/connection`,
link: `/tenant/${ns}/${name}/${tenantName}/connection`,
},
];

Expand Down

0 comments on commit 06afa8b

Please sign in to comment.