Skip to content

Commit 367898a

Browse files
author
Stephen Cefali
authored
feat(dashboards): adds new icon for dashboards (#26183)
Show the new icon for dashboards
1 parent 437a2e5 commit 367898a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

static/app/components/featureBadge.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const FeaturedBadge = ({
4444
<React.Fragment>
4545
{variant === 'badge' && <StyledTag priority={type}>{labels[type]}</StyledTag>}
4646
{variant === 'indicator' && (
47-
<CircleIndicator color={theme.badge[type].indicatorColor} size={8} />
47+
<CircleIndicator color={theme?.badge[type].indicatorColor} size={8} />
4848
)}
4949
</React.Fragment>
5050
</Tooltip>

static/app/components/sidebar/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,7 @@ class Sidebar extends React.Component<Props, State> {
376376
label={t('Dashboards')}
377377
to={`/organizations/${organization.slug}/dashboards/`}
378378
id="customizable-dashboards"
379+
isNew
379380
/>
380381
</Feature>
381382
);

0 commit comments

Comments
 (0)