diff --git a/static/app/views/preprod/buildComparison/header/buildCompareHeaderContent.tsx b/static/app/views/preprod/buildComparison/header/buildCompareHeaderContent.tsx index d573b96261bfaa..d10232344a54c7 100644 --- a/static/app/views/preprod/buildComparison/header/buildCompareHeaderContent.tsx +++ b/static/app/views/preprod/buildComparison/header/buildCompareHeaderContent.tsx @@ -3,6 +3,7 @@ import styled from '@emotion/styled'; import {PlatformIcon} from 'platformicons'; import {Breadcrumbs, type Crumb} from 'sentry/components/breadcrumbs'; +import {FeatureBadge} from 'sentry/components/core/badge/featureBadge'; import {Flex, Stack} from 'sentry/components/core/layout'; import {Text} from 'sentry/components/core/text'; import {Heading} from 'sentry/components/core/text/heading'; @@ -49,7 +50,10 @@ export function BuildCompareHeaderContent(props: BuildCompareHeaderContentProps) return ( - + + + + Build comparison diff --git a/static/app/views/preprod/buildDetails/header/buildDetailsHeaderContent.tsx b/static/app/views/preprod/buildDetails/header/buildDetailsHeaderContent.tsx index fc8df516ee41b4..dca45208b1a8bc 100644 --- a/static/app/views/preprod/buildDetails/header/buildDetailsHeaderContent.tsx +++ b/static/app/views/preprod/buildDetails/header/buildDetailsHeaderContent.tsx @@ -2,6 +2,7 @@ import React from 'react'; import {Link} from 'react-router-dom'; import {Breadcrumbs, type Crumb} from 'sentry/components/breadcrumbs'; +import {FeatureBadge} from 'sentry/components/core/badge/featureBadge'; import {Button} from 'sentry/components/core/button'; import {Flex} from 'sentry/components/core/layout'; import DropdownButton from 'sentry/components/dropdownButton'; @@ -124,7 +125,10 @@ export function BuildDetailsHeaderContent(props: BuildDetailsHeaderContentProps) return ( - + + + + {project && } diff --git a/static/app/views/releases/detail/header/releaseHeader.tsx b/static/app/views/releases/detail/header/releaseHeader.tsx index 7832c8a19f09e5..efc04a1f86931d 100644 --- a/static/app/views/releases/detail/header/releaseHeader.tsx +++ b/static/app/views/releases/detail/header/releaseHeader.tsx @@ -1,3 +1,4 @@ +import React from 'react'; import styled from '@emotion/styled'; import type {Location} from 'history'; import pick from 'lodash/pick'; @@ -92,9 +93,14 @@ function ReleaseHeader({ ) : ( - - {formatAbbreviatedNumber(numberOfMobileBuilds)} - + + + {formatAbbreviatedNumber(numberOfMobileBuilds)} + + + + + ), }), textValue: t('Builds %s', numberOfMobileBuilds),