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 437a2e5 commit 367898aCopy full SHA for 367898a
static/app/components/featureBadge.tsx
@@ -44,7 +44,7 @@ const FeaturedBadge = ({
44
<React.Fragment>
45
{variant === 'badge' && <StyledTag priority={type}>{labels[type]}</StyledTag>}
46
{variant === 'indicator' && (
47
- <CircleIndicator color={theme.badge[type].indicatorColor} size={8} />
+ <CircleIndicator color={theme?.badge[type].indicatorColor} size={8} />
48
)}
49
</React.Fragment>
50
</Tooltip>
static/app/components/sidebar/index.tsx
@@ -376,6 +376,7 @@ class Sidebar extends React.Component<Props, State> {
376
label={t('Dashboards')}
377
to={`/organizations/${organization.slug}/dashboards/`}
378
id="customizable-dashboards"
379
+ isNew
380
/>
381
</Feature>
382
);
0 commit comments