Skip to content

Commit

Permalink
fix(profiling): dont stretch columns (#67168)
Browse files Browse the repository at this point in the history
if count of columns is smaller than max count, the columns vertically
stretch to fit - disable this.
  • Loading branch information
JonasBa committed Mar 18, 2024
1 parent fade69f commit aeb6da8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/app/views/profiling/landing/slowestFunctionsWidget.tsx
Expand Up @@ -392,8 +392,8 @@ const FunctionName = styled(TextOverflow)`
const TransactionsList = styled('div')`
flex: 1 1 auto;
display: grid;
grid-template-columns: minmax(0, 1fr) auto auto auto;
grid-template-rows: 18px auto auto auto auto auto;
grid-template-columns: minmax(0, 1fr) repeat(3, auto);
grid-template-rows: 18px repeat(5, min-content);
column-gap: ${space(1)};
padding: ${space(0)} ${space(2)};
`;
Expand Down

0 comments on commit aeb6da8

Please sign in to comment.