Browse Source

feat(workflow): Removing title from discover link (#18947)

Chris Fuller 4 years ago
parent
commit
0766f43b91
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sentry/static/sentry/app/views/alerts/details/body.tsx

+ 1 - 1
src/sentry/static/sentry/app/views/alerts/details/body.tsx

@@ -60,7 +60,7 @@ export default class DetailsBody extends React.Component<Props> {
     const discoverQuery: NewQuery = {
       id: undefined,
       name: (incident && incident.title) || '',
-      fields: ['issue', 'title', 'count(id)', 'count_unique(user.id)'],
+      fields: ['issue', 'count(id)', 'count_unique(user.id)'],
       orderby:
         incident.alertRule.aggregation === AlertRuleAggregations.UNIQUE_USERS
           ? '-count_unique_user_id'