From 419e8d782c76ae490ac49a2323e432c604f4b01b Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Fri, 10 Mar 2023 12:29:52 +0100 Subject: [PATCH] [v9.4.x] Alerting: Fix contact point name being URL-encoded in the title (#64596) Alerting: Fix contact point name being URL-encoded in the title (#64590) Fix contact point name being encoded in the title text (cherry picked from commit 4c8855ed2dd97dd5dda63323c4e1d58919be928f) Co-authored-by: Sonia Aguilar <33540275+soniaAguilarPeiron@users.noreply.github.com> --- public/app/features/alerting/unified/Receivers.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/app/features/alerting/unified/Receivers.tsx b/public/app/features/alerting/unified/Receivers.tsx index 0ed184c1d4a..6eff867f0f1 100644 --- a/public/app/features/alerting/unified/Receivers.tsx +++ b/public/app/features/alerting/unified/Receivers.tsx @@ -96,8 +96,7 @@ const Receivers = () => { const integrationsErrorCount = contactPointsState?.errorCount ?? 0; const disableAmSelect = !isRoot; - - let pageNav = getPageNavigationModel(type, id, isduplicatingTemplate); + let pageNav = getPageNavigationModel(type, id ? decodeURIComponent(id) : undefined, isduplicatingTemplate); if (!alertManagerSourceName) { return isRoot ? (