diff options
| author | Alexander Tumin <iamtakingiteasy@eientei.org> | 2022-08-06 21:39:08 +0300 |
|---|---|---|
| committer | Alexander Tumin <iamtakingiteasy@eientei.org> | 2022-08-06 21:39:36 +0300 |
| commit | 891fbf996d7ddd415d99ea9065d54b0f493b5422 (patch) | |
| tree | adb88c7c32cc9baa00f6fd763bf6efb37bffde62 /src/boot | |
| parent | b5eba5974ca86cdb0b5f3caaa9c89466a07d8449 (diff) | |
Lists implementation: make route naming consistent
Diffstat (limited to 'src/boot')
| -rw-r--r-- | src/boot/routes.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot/routes.js b/src/boot/routes.js index 8bb7d196..95e47199 100644 --- a/src/boot/routes.js +++ b/src/boot/routes.js @@ -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) { |
