Browse Source

fix(profiling): use same sort as slowest txn widget (#47174)

Jonas 1 year ago
parent
commit
84917f4261
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/views/profiling/content.tsx

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

@@ -61,7 +61,7 @@ function ProfilingContent({location}: ProfilingContentProps) {
   const fields = profilingUsingTransactions ? ALL_FIELDS : BASE_FIELDS;
 
   const sort = formatSort<FieldType>(decodeScalar(location.query.sort), fields, {
-    key: 'p99()',
+    key: 'p95()',
     order: 'desc',
   });