Browse Source

feat(profiling): reorder columns (#59023)

Change column order
Jonas 1 year ago
parent
commit
6f2f3ee80b
1 changed files with 3 additions and 3 deletions
  1. 3 3
      static/app/views/profiling/profileSummary/profilesTable.tsx

+ 3 - 3
static/app/views/profiling/profileSummary/profilesTable.tsx

@@ -14,14 +14,14 @@ import {useLocation} from 'sentry/utils/useLocation';
 
 const FIELDS = [
   'profile.id',
-  'trace',
-  'trace.transaction',
-  'profile.duration',
   'timestamp',
+  'profile.duration',
   'release',
   'environment',
   'os.name',
   'os.version',
+  'trace',
+  'trace.transaction',
 ] as const;
 
 type FieldType = (typeof FIELDS)[number];