We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd2038e commit bb40a88Copy full SHA for bb40a88
src/hooks/useLocationContext.ts
@@ -106,8 +106,8 @@ export const useLocationContext = () => {
106
}
107
108
109
- // Alert details page
110
- if (new RegExp('^/monitoring/alerts/[0-9]+').test(path)) {
+ // Alert details page (including the ACM UI's Alert details page)
+ if (new RegExp('/monitoring/alerts/[0-9]+').test(path)) {
111
if (params.has('alertname')) {
112
setKind('Alert');
113
setName(params.get('alertname'));
0 commit comments