Skip to content

Commit

Permalink
fix(frontend): fix trace panel size (#2943)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeepc committed Jul 17, 2023
1 parent fd0ff9a commit 5e422d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/RunDetailTrace/AnalyzerPanel.tsx
Expand Up @@ -10,7 +10,7 @@ interface IProps {

const panel = {
name: 'ANALYZER',
maxSize: 650,
maxSize: window.innerWidth / 2 || 650,
minSize: 25,
isDefaultOpen: true,
};
Expand Down

0 comments on commit 5e422d9

Please sign in to comment.