From 109aaa2341bd6377b907a85ff330a4fc5b7f5307 Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Thu, 2 Oct 2025 08:18:54 +0530 Subject: [PATCH] fix: Display proper conversation ID with click-to-open in SLA reports (#12570) --- .../settings/reports/components/SLA/SLAReportItem.vue | 11 ++++++++--- .../api/v1/accounts/applied_slas/index.json.jbuilder | 2 +- .../api/v1/accounts/applied_slas_controller_spec.rb | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) 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 }, +}));