Skip to content

Commit 1a6b121

Browse files
ref(components): Replace specific notAvailable Components with app/components/notAvailable (#23872)
1 parent fc84571 commit 1a6b121

File tree

7 files changed

+5
-32
lines changed

7 files changed

+5
-32
lines changed

src/sentry/static/sentry/app/components/events/interfaces/debugMeta-v2/debugImageDetails/candidate/features.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React from 'react';
22
import styled from '@emotion/styled';
33

4+
import NotAvailable from 'app/components/notAvailable';
45
import QuestionTooltip from 'app/components/questionTooltip';
56
import space from 'app/styles/space';
67
import {
@@ -9,8 +10,6 @@ import {
910
CandidateFeatures,
1011
} from 'app/types/debugImage';
1112

12-
import NotAvailable from '../../notAvailable';
13-
1413
import {getCandidateFeatureLabel} from './utils';
1514

1615
type Props = {

src/sentry/static/sentry/app/components/events/interfaces/debugMeta-v2/debugImageDetails/candidate/processings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import React from 'react';
22

3+
import NotAvailable from 'app/components/notAvailable';
34
import {
45
CandidateDownloadStatus,
56
ImageCandidate,
67
ImageCandidateOk,
78
} from 'app/types/debugImage';
89

9-
import NotAvailable from '../../notAvailable';
1010
import ProcessingItem from '../../processing/item';
1111
import ProcessingList from '../../processing/list';
1212

src/sentry/static/sentry/app/components/events/interfaces/debugMeta-v2/debugImageDetails/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import {addErrorMessage} from 'app/actionCreators/indicator';
88
import {ModalRenderProps} from 'app/actionCreators/modal';
99
import AsyncComponent from 'app/components/asyncComponent';
1010
import Button from 'app/components/button';
11+
import NotAvailable from 'app/components/notAvailable';
1112
import {t} from 'app/locale';
1213
import space from 'app/styles/space';
1314
import {Organization, Project} from 'app/types';
@@ -16,7 +17,6 @@ import {CandidateDownloadStatus, Image} from 'app/types/debugImage';
1617
import theme from 'app/utils/theme';
1718

1819
import Address from '../address';
19-
import NotAvailable from '../notAvailable';
2020
import {getFileName} from '../utils';
2121

2222
import Candidates from './candidates';

src/sentry/static/sentry/app/components/events/interfaces/debugMeta-v2/notAvailable.tsx

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/sentry/static/sentry/app/components/events/interfaces/debugMeta-v2/processing/list.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import React from 'react';
22
import styled from '@emotion/styled';
33

4+
import NotAvailable from 'app/components/notAvailable';
45
import space from 'app/styles/space';
56

6-
import NotAvailable from '../notAvailable';
7-
87
type Props = {
98
items: Array<React.ReactElement>;
109
className?: string;

src/sentry/static/sentry/app/views/releases/list/notAvailable.tsx

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/sentry/static/sentry/app/views/releases/list/releaseHealth/content.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import Collapsible from 'app/components/collapsible';
77
import Count from 'app/components/count';
88
import GlobalSelectionLink from 'app/components/globalSelectionLink';
99
import ProjectBadge from 'app/components/idBadge/projectBadge';
10+
import NotAvailable from 'app/components/notAvailable';
1011
import {PanelItem} from 'app/components/panels';
1112
import Placeholder from 'app/components/placeholder';
1213
import ProgressBar from 'app/components/progressBar';
@@ -22,7 +23,6 @@ import AdoptionTooltip from '../adoptionTooltip';
2223
import CrashFree from '../crashFree';
2324
import HealthStatsChart from '../healthStatsChart';
2425
import HealthStatsPeriod, {StatsPeriod} from '../healthStatsPeriod';
25-
import NotAvailable from '../notAvailable';
2626
import {DisplayOption} from '../utils';
2727

2828
import Header from './header';

0 commit comments

Comments
 (0)