Skip to content

Commit

Permalink
fix(profiling): default sort profiles table by count desc (#58162)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasBa authored Oct 16, 2023
1 parent 32b338e commit edef00f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/app/views/profiling/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function ProfilingContent({location}: ProfilingContentProps) {
const fields = profilingUsingTransactions ? ALL_FIELDS : BASE_FIELDS;

const sort = formatSort<FieldType>(decodeScalar(location.query.sort), fields, {
key: 'p95()',
key: 'count()',
order: 'desc',
});

Expand Down

0 comments on commit edef00f

Please sign in to comment.