File tree 8 files changed +11
-11
lines changed
dashboards/widgets/timeSeriesWidget
8 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import type {AggregationOutputType} from 'sentry/utils/discover/fields';
26
26
import { type Range , RangeMap } from 'sentry/utils/number/rangeMap' ;
27
27
import useOrganization from 'sentry/utils/useOrganization' ;
28
28
import usePageFilters from 'sentry/utils/usePageFilters' ;
29
- import { useReleaseBubbles } from 'sentry/views/dashboards/widgets/timeSeriesWidget /releaseBubbles/useReleaseBubbles' ;
29
+ import { useReleaseBubbles } from 'sentry/views/releases /releaseBubbles/useReleaseBubbles' ;
30
30
import { makeReleasesPathname } from 'sentry/views/releases/utils/pathnames' ;
31
31
32
32
import { useWidgetSyncContext } from '../../contexts/widgetSyncContext' ;
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ import {DateTime} from 'sentry/components/dateTime';
5
5
import { t } from 'sentry/locale' ;
6
6
import { space } from 'sentry/styles/space' ;
7
7
import type { ReleaseMetaBasic } from 'sentry/types/release' ;
8
- import type { Bucket } from 'sentry/views/dashboards/widgets/timeSeriesWidget/releaseBubbles/types' ;
9
8
import { Widget } from 'sentry/views/dashboards/widgets/widget/widget' ;
9
+ import type { Bucket } from 'sentry/views/releases/releaseBubbles/types' ;
10
10
11
11
import { ReleaseDrawerTable } from './releasesDrawerTable' ;
12
12
File renamed without changes.
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import debounce from 'lodash/debounce';
4
4
5
5
import type { Series } from 'sentry/types/echarts' ;
6
6
import { trackAnalytics } from 'sentry/utils/analytics' ;
7
- import { BUBBLE_SERIES_ID } from 'sentry/views/dashboards/widgets/timeSeriesWidget /releaseBubbles/constants' ;
8
- import type { Bucket } from 'sentry/views/dashboards/widgets/timeSeriesWidget /releaseBubbles/types' ;
7
+ import { BUBBLE_SERIES_ID } from 'sentry/views/releases /releaseBubbles/constants' ;
8
+ import type { Bucket } from 'sentry/views/releases /releaseBubbles/types' ;
9
9
10
10
interface LegendSelectChangedParams {
11
11
name : string ;
File renamed without changes.
Original file line number Diff line number Diff line change @@ -26,14 +26,14 @@ import {getFormat} from 'sentry/utils/dates';
26
26
import useOrganization from 'sentry/utils/useOrganization' ;
27
27
import usePageFilters from 'sentry/utils/usePageFilters' ;
28
28
import { useUser } from 'sentry/utils/useUser' ;
29
+ import { ReleasesDrawer } from 'sentry/views/releases/drawer/releasesDrawer' ;
29
30
import {
30
31
BUBBLE_AREA_SERIES_ID ,
31
32
BUBBLE_SERIES_ID ,
32
- } from 'sentry/views/dashboards/widgets/timeSeriesWidget/releaseBubbles/constants' ;
33
- import { createReleaseBubbleHighlighter } from 'sentry/views/dashboards/widgets/timeSeriesWidget/releaseBubbles/createReleaseBubbleHighlighter' ;
34
- import type { Bucket } from 'sentry/views/dashboards/widgets/timeSeriesWidget/releaseBubbles/types' ;
35
- import { createReleaseBuckets } from 'sentry/views/dashboards/widgets/timeSeriesWidget/releaseBubbles/utils/createReleaseBuckets' ;
36
- import { ReleasesDrawer } from 'sentry/views/releases/drawer/releasesDrawer' ;
33
+ } from 'sentry/views/releases/releaseBubbles/constants' ;
34
+ import { createReleaseBubbleHighlighter } from 'sentry/views/releases/releaseBubbles/createReleaseBubbleHighlighter' ;
35
+ import type { Bucket } from 'sentry/views/releases/releaseBubbles/types' ;
36
+ import { createReleaseBuckets } from 'sentry/views/releases/releaseBubbles/utils/createReleaseBuckets' ;
37
37
38
38
interface CreateReleaseBubbleMouseListenersParams {
39
39
buckets : Bucket [ ] ;
Original file line number Diff line number Diff line change 1
- import { createReleaseBuckets } from 'sentry/views/dashboards/widgets/timeSeriesWidget /releaseBubbles/utils/createReleaseBuckets' ;
1
+ import { createReleaseBuckets } from 'sentry/views/releases /releaseBubbles/utils/createReleaseBuckets' ;
2
2
3
3
describe ( 'createReleaseBuckets' , ( ) => {
4
4
const now = Date . now ( ) ;
Original file line number Diff line number Diff line change 1
1
import type { ReleaseMetaBasic } from 'sentry/types/release' ;
2
- import type { Bucket } from 'sentry/views/dashboards/widgets/timeSeriesWidget /releaseBubbles/types' ;
2
+ import type { Bucket } from 'sentry/views/releases /releaseBubbles/types' ;
3
3
4
4
//
5
5
// Note: You probably don't want to use this directly, use `useReleaseBubbles`
You can’t perform that action at this time.
0 commit comments