Browse Source

fix(issue-details): Swap order of last/first event buttons in event navigation (#75354)

this pr swaps the order of the last/first event buttons in the updated
event navigation. now "first" event will come first so the buttons are
chronological
Richard Roggenkemper 7 months ago
parent
commit
261267ba5f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/views/issueDetails/eventNavigation.tsx

+ 1 - 1
static/app/views/issueDetails/eventNavigation.tsx

@@ -44,8 +44,8 @@ enum EventNavOptions {
 
 const EventNavLabels = {
   [EventNavOptions.RECOMMENDED]: t('Recommended Event'),
-  [EventNavOptions.LATEST]: t('Last Event'),
   [EventNavOptions.OLDEST]: t('First Event'),
+  [EventNavOptions.LATEST]: t('Last Event'),
 };
 
 const eventDataSections: SectionDefinition[] = [