Browse Source

chore(issue-details): Sort all events by timestamp (#80398)

Richard Roggenkemper 4 months ago
parent
commit
4a7f684509

+ 1 - 0
static/app/views/issueDetails/streamline/eventList.spec.tsx

@@ -120,6 +120,7 @@ describe('EventList', () => {
           query: persistantQuery,
           referrer: 'issue_details.streamline_list',
           statsPeriod: '14d',
+          sort: '-timestamp',
         },
       })
     );

+ 1 - 0
static/app/views/issueDetails/streamline/eventList.tsx

@@ -44,6 +44,7 @@ export function EventList({group}: EventListProps) {
     group,
     queryProps: {
       fields,
+      orderby: ['-timestamp'],
       widths: fields.map(field => {
         switch (field) {
           case 'id':