Lists implementation: make route naming consistent

This commit is contained in:
Alexander Tumin 2022-08-06 21:39:08 +03:00
commit 891fbf996d
7 changed files with 9 additions and 9 deletions

View file

@ -77,8 +77,8 @@ export default (store) => {
{ name: 'about', path: '/about', component: About },
{ name: 'user-profile', path: '/:_(users)?/:name', component: UserProfile },
{ name: 'lists', path: '/lists', component: Lists },
{ name: 'list-timeline', path: '/lists/:id', component: ListsTimeline },
{ name: 'list-edit', path: '/lists/:id/edit', component: ListsEdit }
{ name: 'lists-timeline', path: '/lists/:id', component: ListsTimeline },
{ name: 'lists-edit', path: '/lists/:id/edit', component: ListsEdit }
]
if (store.state.instance.pleromaChatMessagesAvailable) {