Просмотр исходного кода

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

Jonas 1 год назад
Родитель
Сommit
84917f4261
1 измененных файлов с 1 добавлено и 1 удалено
  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',
   });