Skip to content

Commit

Permalink
adjust route paths
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcottle committed Nov 28, 2024
1 parent 9006154 commit 7d0334b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ const router = createRouter({
},
{
name: "node.settings",
path: '/settings/:nodeId',
path: '/nodes/:nodeId/settings',
props: true,
component: () => import("./components/pages/settings/NodeSettingsPage.vue"),
},
{
name: "node.settings.user",
path: '/settings/:nodeId/user',
path: '/nodes/:nodeId/settings/user',
props: true,
component: () => import("./components/pages/settings/NodeUserSettingsPage.vue"),
},
Expand Down

0 comments on commit 7d0334b

Please sign in to comment.