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/components/lists_edit/lists_edit.js | |
| parent | b5eba5974ca86cdb0b5f3caaa9c89466a07d8449 (diff) | |
Lists implementation: make route naming consistent
Diffstat (limited to 'src/components/lists_edit/lists_edit.js')
| -rw-r--r-- | src/components/lists_edit/lists_edit.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/lists_edit/lists_edit.js b/src/components/lists_edit/lists_edit.js index 7b642929..a68bb589 100644 --- a/src/components/lists_edit/lists_edit.js +++ b/src/components/lists_edit/lists_edit.js @@ -79,7 +79,7 @@ const ListsNew = { this.$store.dispatch('setList', { id: this.id, title: this.title }) this.$store.dispatch('setListAccounts', { id: this.id, accountIds: this.selectedUserIds }) - this.$router.push({ name: 'list-timeline', params: { id: this.id } }) + this.$router.push({ name: 'lists-timeline', params: { id: this.id } }) }, deleteList () { this.$store.dispatch('deleteList', { id: this.id }) |
