File tree 2 files changed +4
-4
lines changed
static/app/views/dashboards/widgets
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ import type {StateProps} from '../common/types';
21
21
22
22
import { DEEMPHASIS_COLOR_NAME , LOADING_PLACEHOLDER } from './settings' ;
23
23
24
- interface Props
24
+ export interface BigNumberWidgetProps
25
25
extends StateProps ,
26
26
Omit < WidgetFrameProps , 'children' > ,
27
27
Partial < BigNumberWidgetVisualizationProps > { }
28
28
29
- export function BigNumberWidget ( props : Props ) {
29
+ export function BigNumberWidget ( props : BigNumberWidgetProps ) {
30
30
const { value, previousPeriodValue, field} = props ;
31
31
32
32
if ( props . isLoading ) {
Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ import {
15
15
import { MISSING_DATA_MESSAGE , X_GUTTER , Y_GUTTER } from '../common/settings' ;
16
16
import type { StateProps } from '../common/types' ;
17
17
18
- interface Props
18
+ export interface LineChartWidgetProps
19
19
extends StateProps ,
20
20
Omit < WidgetFrameProps , 'children' > ,
21
21
Partial < LineChartWidgetVisualizationProps > { }
22
22
23
- export function LineChartWidget ( props : Props ) {
23
+ export function LineChartWidget ( props : LineChartWidgetProps ) {
24
24
const { timeseries} = props ;
25
25
26
26
if ( props . isLoading ) {
You can’t perform that action at this time.
0 commit comments