diff --git a/static/app/components/devtoolbar/components/alerts/alertsPanel.tsx b/static/app/components/devtoolbar/components/alerts/alertsPanel.tsx index d87e7ff26ba09b..1fb27f97d4f40b 100644 --- a/static/app/components/devtoolbar/components/alerts/alertsPanel.tsx +++ b/static/app/components/devtoolbar/components/alerts/alertsPanel.tsx @@ -38,7 +38,7 @@ export default function AlertsPanel() { const placeholderHeight = `${estimateSize - 8}px`; // The real height of the items, minus the padding-block value return ( - +
+
Unresolved issues related to this page
diff --git a/static/app/components/devtoolbar/components/panelLayout.tsx b/static/app/components/devtoolbar/components/panelLayout.tsx index 302f588367756a..75f6ac79870294 100644 --- a/static/app/components/devtoolbar/components/panelLayout.tsx +++ b/static/app/components/devtoolbar/components/panelLayout.tsx @@ -1,5 +1,7 @@ import {css} from '@emotion/react'; +import type {UrlObject} from 'query-string'; +import SentryAppLink from 'sentry/components/devtoolbar/components/sentryAppLink'; import useConfiguration from 'sentry/components/devtoolbar/hooks/useConfiguration'; import {buttonCss} from 'sentry/components/devtoolbar/styles/typography'; import ProjectBadge from 'sentry/components/idBadge/projectBadge'; @@ -10,6 +12,7 @@ import {resetDialogCss, resetFlexColumnCss, resetFlexRowCss} from '../styles/res interface Props { children?: React.ReactNode; + link?: UrlObject; showProjectBadge?: boolean; title?: string; titleRight?: React.ReactNode; @@ -20,6 +23,7 @@ export default function PanelLayout({ title, titleRight, showProjectBadge, + link, }: Props) { const {projectId, projectSlug, projectPlatform} = useConfiguration(); return ( @@ -51,7 +55,13 @@ export default function PanelLayout({ {alignItems: 'center', marginRight: 'var(--space100)'}, ]} > -

{title}

+ {link ? ( + +

{title}

+
+ ) : ( +

{title}

+ )} {titleRight} ) : null} diff --git a/static/app/components/devtoolbar/components/releases/releasesPanel.tsx b/static/app/components/devtoolbar/components/releases/releasesPanel.tsx index f1f9dac59b1ad0..bc99edbfa41d54 100644 --- a/static/app/components/devtoolbar/components/releases/releasesPanel.tsx +++ b/static/app/components/devtoolbar/components/releases/releasesPanel.tsx @@ -192,7 +192,7 @@ export default function ReleasesPanel() { } return ( - + +