commit: 711a610727cf57677923816b08ef445372724995
parent b4409822204a287ef5d3a9f7dcc26ae4a8ad5d2a
Author: Henry Jameson <me@hjkos.com>
Date: Wed, 17 Aug 2022 21:25:02 +0300
fix routes and tests
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/boot/routes.js b/src/boot/routes.js
@@ -80,7 +80,7 @@ export default (store) => {
{ name: 'lists', path: '/lists', component: Lists },
{ name: 'lists-timeline', path: '/lists/:id', component: ListsTimeline },
{ name: 'lists-edit', path: '/lists/:id/edit', component: ListsEdit },
- { name: 'lists-edit', path: '/lists/new', component: ListsEdit },
+ { name: 'lists-new', path: '/lists/new', component: ListsEdit },
{ name: 'edit-navigation', path: '/nav-edit', component: NavPanel, props: () => ({ forceExpand: true, forceEditMode: true }), beforeEnter: validateAuthenticatedRoute }
]