File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
static/app/components/timeRangeSelector Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11import { Fragment } from 'react' ;
22import moment from 'moment-timezone' ;
33
4- import Datetime from 'sentry/components/dateTime' ;
4+ import { DateTime } from 'sentry/components/dateTime' ;
55import autoCompleteFilter from 'sentry/components/dropdownAutoComplete/autoCompleteFilter' ;
66import type { ItemsBeforeFilter } from 'sentry/components/dropdownAutoComplete/types' ;
77import { DEFAULT_RELATIVE_PERIODS } from 'sentry/constants' ;
@@ -152,9 +152,9 @@ export function getAbsoluteSummary(
152152
153153 return (
154154 < Fragment >
155- < Datetime date = { start } dateOnly = { showDateOnly } utc = { ! ! utc } />
155+ < DateTime date = { start } dateOnly = { showDateOnly } utc = { ! ! utc } />
156156 { '–' }
157- < Datetime date = { end } dateOnly = { showDateOnly } utc = { ! ! utc } />
157+ < DateTime date = { end } dateOnly = { showDateOnly } utc = { ! ! utc } />
158158 </ Fragment >
159159 ) ;
160160}
You can’t perform that action at this time.
0 commit comments