Browse Source

feat(workflow): Adding title field to 'View in Discover' link (#18676)

* Adding title field to 'View in Discover' link

* Remove widths from 'View in Discover' link
Chris Fuller 4 years ago
parent
commit
3d8c1cbe80
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/sentry/static/sentry/app/views/alerts/details/body.tsx

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

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