Browse Source

fix(profiling): Add back device columns to profile summary (#41076)

These were accidentally removed in #41045, just adding them back.
Tony Xiao 2 years ago
parent
commit
68e57c4af8
1 changed files with 8 additions and 1 deletions
  1. 8 1
      static/app/views/profiling/profileSummary/content.tsx

+ 8 - 1
static/app/views/profiling/profileSummary/content.tsx

@@ -137,7 +137,14 @@ function ProfileSummaryContent(props: ProfileSummaryContentProps) {
   );
 }
 
-const FIELDS = ['id', 'timestamp', 'release', 'profile.duration'] as const;
+const FIELDS = [
+  'id',
+  'timestamp',
+  'release',
+  'device.model',
+  'device.classification',
+  'profile.duration',
+] as const;
 
 type FieldType = typeof FIELDS[number];