From 711a610727cf57677923816b08ef445372724995 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 17 Aug 2022 21:25:02 +0300 Subject: [PATCH] fix routes and tests --- src/boot/routes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot/routes.js b/src/boot/routes.js index bf009be6..6b9c8db2 100644 --- 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 } ]