diff --git a/src/boot/routes.js b/src/boot/routes.js index 2a3728aa..3df36f42 100644 --- a/src/boot/routes.js +++ b/src/boot/routes.js @@ -70,8 +70,8 @@ export default (store) => { { name: 'search', path: '/search', component: Search, props: (route) => ({ query: route.query.query }) }, { name: 'who-to-follow', path: '/who-to-follow', component: WhoToFollow, beforeEnter: validateAuthenticatedRoute }, { name: 'about', path: '/about', component: About }, - { name: 'user-profile', path: '/(users/)?:name', component: UserProfile }, - { name: 'lists', path: '/lists', component: Lists, beforeEnter: validateAuthenticatedRoute } + { name: 'lists', path: '/lists', component: Lists, beforeEnter: validateAuthenticatedRoute }, + { name: 'user-profile', path: '/(users/)?:name', component: UserProfile } ] if (store.state.instance.pleromaChatMessagesAvailable) { diff --git a/src/components/lists/lists.vue b/src/components/lists/lists.vue index bb7ffbe5..86244df9 100644 --- a/src/components/lists/lists.vue +++ b/src/components/lists/lists.vue @@ -1,5 +1,8 @@