File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ type ScoreCardProps = {
19
19
trendStatus ?: 'good' | 'bad' ;
20
20
} ;
21
21
22
- function ScoreCard ( {
22
+ export function ScoreCard ( {
23
23
title,
24
24
score,
25
25
help,
@@ -124,5 +124,3 @@ export const Trend = styled('div')<TrendProps>`
124
124
line-height: 1;
125
125
overflow: hidden;
126
126
` ;
127
-
128
- export default ScoreCard ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import {Switch} from 'sentry/components/core/switch';
15
15
import ExternalLink from 'sentry/components/links/externalLink' ;
16
16
import NotAvailable from 'sentry/components/notAvailable' ;
17
17
import QuestionTooltip from 'sentry/components/questionTooltip' ;
18
- import ScoreCard from 'sentry/components/scoreCard' ;
18
+ import { ScoreCard } from 'sentry/components/scoreCard' ;
19
19
import { DEFAULT_STATS_PERIOD } from 'sentry/constants' ;
20
20
import { IconSettings } from 'sentry/icons' ;
21
21
import { t , tct } from 'sentry/locale' ;
Original file line number Diff line number Diff line change @@ -11,8 +11,9 @@ import Panel from 'sentry/components/panels/panel';
11
11
import Placeholder from 'sentry/components/placeholder' ;
12
12
import BookmarkStar from 'sentry/components/projects/bookmarkStar' ;
13
13
import QuestionTooltip from 'sentry/components/questionTooltip' ;
14
- import ScoreCard , {
14
+ import {
15
15
Score ,
16
+ ScoreCard ,
16
17
ScorePanel ,
17
18
ScoreWrapper ,
18
19
Title ,
You can’t perform that action at this time.
0 commit comments