diff --git a/app/javascript/dashboard/routes/dashboard/inbox/InboxList.vue b/app/javascript/dashboard/routes/dashboard/inbox/InboxList.vue index 64ff7936b..e0924b9c0 100644 --- a/app/javascript/dashboard/routes/dashboard/inbox/InboxList.vue +++ b/app/javascript/dashboard/routes/dashboard/inbox/InboxList.vue @@ -97,8 +97,8 @@ export default { methods: { redirectToInbox() { if (!this.conversationId) return; - if (this.$route.name === 'inbox') return; - this.$router.push({ name: 'inbox' }); + if (this.$route.name === 'inbox-view') return; + this.$router.push({ name: 'inbox-view' }); }, loadMoreNotifications() { if (this.uiFlags.isAllNotificationsLoaded) return; diff --git a/app/javascript/dashboard/routes/dashboard/inbox/components/InboxItemHeader.vue b/app/javascript/dashboard/routes/dashboard/inbox/components/InboxItemHeader.vue index 14882f84c..bf655465b 100644 --- a/app/javascript/dashboard/routes/dashboard/inbox/components/InboxItemHeader.vue +++ b/app/javascript/dashboard/routes/dashboard/inbox/components/InboxItemHeader.vue @@ -132,7 +132,7 @@ export default { .then(() => { this.showAlert(this.$t('INBOX.ALERTS.DELETE')); }); - this.$router.push({ name: 'inbox' }); + this.$router.push({ name: 'inbox-view' }); }, onClickNext() { this.$emit('next');