Browse Source

ref(dashboards): Prebuilt issue widget remove assignee_or_suggested condition and fixed count field (#31427)

Feedback on prebuilt issue widget, we want Issues to be cross team so removing the assignee_or_suggested condition for now

Also changed the count field to events (new name)
edwardgou-sentry 3 years ago
parent
commit
28c8e72eba
1 changed files with 2 additions and 2 deletions
  1. 2 2
      static/app/views/dashboardsV2/widgetLibrary/data.tsx

+ 2 - 2
static/app/views/dashboardsV2/widgetLibrary/data.tsx

@@ -104,8 +104,8 @@ export const DEFAULT_WIDGETS: Readonly<Array<WidgetTemplate>> = [
     queries: [
       {
         name: '',
-        conditions: 'is:unresolved is:for_review assigned_or_suggested:[me, none]',
-        fields: ['issue', 'assignee', 'count', 'title'],
+        conditions: 'is:unresolved is:for_review',
+        fields: ['issue', 'assignee', 'events', 'title'],
         orderby: 'date',
       },
     ],