mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
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:
parent
1667ea118f
commit
4c8855ed2d
@ -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 ? (
|
||||
|
Loading…
Reference in New Issue
Block a user