We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af9f4d9 commit ebe8c76Copy full SHA for ebe8c76
src/sentry/static/sentry/app/views/organizationIncidents/details/activity/statusItem.jsx
@@ -10,6 +10,7 @@ import {t} from 'app/locale';
10
import ActivityItem from 'app/components/activity/item';
11
import Chart from 'app/views/organizationIncidents/details/chart';
12
import SentryTypes from 'app/sentryTypes';
13
+import getDynamicText from 'app/utils/getDynamicText';
14
15
/**
16
* StatusItem renders status changes for Incidents
@@ -59,7 +60,7 @@ class StatusItem extends React.Component {
59
60
{isReopened && t('re-opened')} {t('an Incident')}
61
</div>
62
}
- date={activity.dateCreated}
63
+ date={getDynamicText({value: activity.dateCreated, fixed: new Date(0)})}
64
>
65
{activity.eventStats && (
66
<Chart
0 commit comments