diff --git a/app/javascript/dashboard/routes/dashboard/settings/reports/components/SLA/SLAReportItem.vue b/app/javascript/dashboard/routes/dashboard/settings/reports/components/SLA/SLAReportItem.vue index 9604cedf9..4712036be 100644 --- a/app/javascript/dashboard/routes/dashboard/settings/reports/components/SLA/SLAReportItem.vue +++ b/app/javascript/dashboard/routes/dashboard/settings/reports/components/SLA/SLAReportItem.vue @@ -27,6 +27,11 @@ const conversationLabels = computed(() => { ? props.conversation.labels.split(',').map(item => item.trim()) : []; }); + +const routerParams = computed(() => ({ + name: 'inbox_conversation', + params: { conversation_id: props.conversationId }, +}));