|
@@ -149,13 +149,15 @@ class GroupDetails extends Component<Props, State> {
|
|
|
trackView(project: Project) {
|
|
|
const {group, event} = this.state;
|
|
|
const {location, organization, router} = this.props;
|
|
|
- const {alert_date, alert_rule_id, alert_type, ref_fallback} = location.query;
|
|
|
+ const {alert_date, alert_rule_id, alert_type, ref_fallback, stream_index} =
|
|
|
+ location.query;
|
|
|
|
|
|
this.props.setEventNames('issue_details.viewed', 'Issue Details: Viewed');
|
|
|
this.props.setRouteAnalyticsParams({
|
|
|
...getAnalyticsDataForGroup(group),
|
|
|
...getAnalyticsDataForEvent(event),
|
|
|
...getAnalyicsDataForProject(project),
|
|
|
+ stream_index: typeof stream_index === 'string' ? Number(stream_index) : undefined,
|
|
|
// Alert properties track if the user came from email/slack alerts
|
|
|
alert_date:
|
|
|
typeof alert_date === 'string' ? getUtcDateString(Number(alert_date)) : undefined,
|