Skip to content

Commit be90cc7

Browse files
committed
fix: limit run output panel width
1 parent 75b42b9 commit be90cc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/run/RunContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
615615
return (
616616
<Box sx={{ width: '100%' }}>
617617
<TabContext value={tab}>
618-
<TabPanel value='output' sx={{ width: '100%', maxWidth: '1000px' }}>
618+
<TabPanel value='output' sx={{ width: '100%', maxWidth: '900px' }}>
619619
{row.status === 'running' || row.status === 'queued' ? (
620620
<Box sx={{ display: 'flex', alignItems: 'center' }}>
621621
<CircularProgress size={22} sx={{ marginRight: '10px' }} />

0 commit comments

Comments
 (0)