Alerting: Fix contact point name being URL-encoded in the title (#64590)
Fix contact point name being encoded in the title text
This commit is contained in:
@@ -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 ? (
|
||||
|
||||
Reference in New Issue
Block a user