Skip to content

Commit

Permalink
chore :: id -> detail id name
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed May 8, 2024
1 parent 0012f2a commit 5656960
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/router/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const Router = createBrowserRouter([
{ index: true, element: <Team /> },
{ path: 'create', element: <TeamCreate /> },
{
path: ':id',
path: ':teamUUID',
children: [
{ index: true, element: <Error /> },
{ path: 'manage', element: <TeamManage /> },
Expand All @@ -36,14 +36,14 @@ export const Router = createBrowserRouter([
{ index: true, element: <TeamDeploy /> },
{ path: 'create', element: <TeamDeployCreate /> },
{
path: ':id',
path: ':deoployUUID',
children: [
{ index: true, element: <TeamDeployInformation /> },
{
path: 'container',
children: [
{ index: true, element: <TeamDeployContainer /> },
{ path: ':id', element: <TeamDeployContainerDetail /> },
{ path: ':containerUUID', element: <TeamDeployContainerDetail /> },
],
},
],
Expand Down

0 comments on commit 5656960

Please sign in to comment.