Browse Source

fix(alerts): Project breadcrumb link to project rule list (#28339)

The Project in the breadcrumbs previously went to project settings. This will now go to the list of Alerts for that specific project.

FIXES WOR-1193
Kelly Carino 3 years ago
parent
commit
6aff6d2413
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/views/alerts/builder/builderBreadCrumbs.tsx

+ 1 - 1
static/app/views/alerts/builder/builderBreadCrumbs.tsx

@@ -39,7 +39,7 @@ function BuilderBreadCrumbs(props: Props) {
   const isSuperuser = isActiveSuperuser();
 
   const projectCrumbLink = {
-    to: `/settings/${orgSlug}/projects/${projectSlug}/`,
+    to: `/organizations/${orgSlug}/alerts/rules/?project=${project?.id}`,
     label: <IdBadge project={project} avatarSize={18} disableLink />,
     preserveGlobalSelection: true,
   };