File tree 1 file changed +7
-1
lines changed
src/sentry/static/sentry/app/views/events
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import ReleaseSeries from 'app/components/charts/releaseSeries';
12
12
import SentryTypes from 'app/sentryTypes' ;
13
13
import withApi from 'app/utils/withApi' ;
14
14
import withGlobalSelection from 'app/utils/withGlobalSelection' ;
15
+ import { getParams } from 'app/views/events/utils/getParams' ;
15
16
16
17
import EventsRequest from './utils/eventsRequest' ;
17
18
import YAxisSelector from './yAxisSelector' ;
@@ -203,9 +204,14 @@ const EventsChartContainer = withGlobalSelection(
203
204
const { selection, ...props } = this . props ;
204
205
const { datetime, projects, environments} = selection ;
205
206
207
+ const { start, end, statsPeriod, utc} = getParams ( datetime ) ;
208
+
206
209
return (
207
210
< EventsChart
208
- { ...datetime }
211
+ start = { start }
212
+ end = { end }
213
+ period = { statsPeriod }
214
+ utc = { utc }
209
215
projects = { projects || [ ] }
210
216
environments = { environments || [ ] }
211
217
{ ...props }
You can’t perform that action at this time.
0 commit comments